]> CyberLeo.Net >> Repos - FreeBSD/releng/8.2.git/blob - sys/contrib/dev/acpica/acpica_prep.sh
Copy stable/8 to releng/8.2 in preparation for FreeBSD-8.2 release.
[FreeBSD/releng/8.2.git] / sys / contrib / dev / acpica / acpica_prep.sh
1 #!/bin/sh
2 # $FreeBSD$
3 #
4 # Unpack an ACPI CA drop and restructure it to fit the FreeBSD layout
5 #
6
7 if [ ! $# -eq 1 ]; then
8         echo "usage: $0 acpica_archive"
9         exit
10 fi
11
12 src=$1
13 wrk=`realpath ./_acpi_ca_unpack`
14 dst=`realpath ./acpi_ca_destination`
15
16 # files that should keep their full directory path
17 fulldirs="common compiler debugger disassembler dispatcher events       \
18         executer hardware include namespace parser resources tables     \
19         tools utilities"
20
21 # files to remove
22 stripdirs="acpisrc acpixtract examples generate os_specific tests"
23 stripfiles="Makefile README acintel.h aclinux.h acmsvc.h acnetbsd.h     \
24         acos2.h accygwin.h acefi.h acwin.h acwin64.h aeexec.c           \
25         aehandlers.c aemain.c aetables.c aetables.h osunixdir.c         \
26         readme.txt utclib.c"
27
28 # include files to canonify
29 src_headers="acapps.h accommon.h acconfig.h acdebug.h acdisasm.h        \
30         acdispat.h acevents.h acexcep.h acglobal.h achware.h acinterp.h \
31         aclocal.h acmacros.h acnames.h acnamesp.h acobject.h acopcode.h \
32         acoutput.h acparser.h acpi.h acpiosxf.h acpixf.h acpredef.h     \
33         acresrc.h acrestyp.h acstruct.h actables.h actbl.h actbl1.h     \
34         actbl2.h actypes.h acutils.h amlcode.h amlresrc.h               \
35         platform/acenv.h platform/acfreebsd.h platform/acgcc.h"
36 comp_headers="aslcompiler.h asldefine.h aslglobal.h aslmessages.h       \
37         asltypes.h dtcompiler.h dttemplate.h"
38 platform_headers="acfreebsd.h acgcc.h"
39
40 # pre-clean
41 echo pre-clean
42 rm -rf ${wrk} ${dst}
43 mkdir -p ${wrk}
44 mkdir -p ${dst}
45
46 # unpack
47 echo unpack
48 tar -x -z -f ${src} -C ${wrk}
49
50 # strip files
51 echo strip
52 for i in ${stripdirs}; do
53         find ${wrk} -name ${i} -type d -print | xargs rm -r
54 done
55 for i in ${stripfiles}; do
56         find ${wrk} -name ${i} -type f -delete
57 done
58
59 # copy files
60 echo copying full dirs
61 for i in ${fulldirs}; do
62         find ${wrk} -name ${i} -type d -print | xargs -J % mv % ${dst}
63 done
64 echo copying remaining files
65 find ${wrk} -type f -print | xargs -J % mv % ${dst}
66
67 # canonify include paths
68 for H in ${src_headers}; do
69         find ${dst} -name "*.[chy]" -type f -print |    \
70         xargs sed -i "" -e "s|[\"<]$H[\">]|\<contrib/dev/acpica/include/$H\>|g"
71 done
72 for H in ${comp_headers}; do
73         find ${dst}/common ${dst}/compiler -name "*.[chly]" -type f |   \
74         xargs sed -i "" -e "s|[\"<]$H[\">]|\<contrib/dev/acpica/compiler/$H\>|g"
75 done
76 for H in ${platform_headers}; do
77         find ${dst}/include/platform -name "*.h" -type f -print |       \
78         xargs sed -i "" -e "s|[\"<]$H[\">]|\<contrib/dev/acpica/include/platform/$H\>|g"
79 done
80
81 # post-clean
82 echo post-clean
83 rm -rf ${wrk}
84
85 # assist the developer in generating a diff
86 echo "Directories you may want to 'cvs diff':"
87 echo "    src/sys/contrib/dev/acpica src/sys/dev/acpica \\"
88 echo "    src/sys/amd64/acpica src/sys/i386/acpica src/sys/ia64/acpica \\"
89 echo "    src/sys/amd64/include src/sys/i386/include src/sys/ia64/include \\"
90 echo "    src/sys/boot src/sys/conf src/sys/modules/acpi src/usr.sbin/acpi"