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