mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Prepare for importing newer version of ACPI CA.
This commit is contained in:
parent
1c39a77468
commit
173ff9844f
1 changed files with 10 additions and 3 deletions
|
|
@ -14,9 +14,9 @@ wrk=./_acpi_ca_unpack
|
|||
dst=./acpi_ca_destination
|
||||
|
||||
# files to remove
|
||||
stripdirs="compiler generate"
|
||||
stripfiles="osunixxf.c 16bit.h Makefile a16find.c a16utils.asm a16utils.obj\
|
||||
acintel.h aclinux.h acmsvc.h acwin.h acwin64.h getopt.c"
|
||||
stripdirs="common compiler generate"
|
||||
stripfiles="osunixxf.c Makefile adisasm.h acdos16.h\
|
||||
acintel.h aclinux.h acmsvc.h acwin.h acwin64.h"
|
||||
|
||||
# pre-clean
|
||||
echo pre-clean
|
||||
|
|
@ -25,6 +25,12 @@ rm -rf ${dst}
|
|||
mkdir -p ${wrk}
|
||||
mkdir -p ${dst}
|
||||
|
||||
# fetch document
|
||||
echo fetch document
|
||||
fetch http://developer.intel.com/technology/iapc/acpi/downloads/CHANGES.txt
|
||||
tr -d '\r' < CHANGES.txt > CHANGES.txt.tmp
|
||||
mv CHANGES.txt.tmp CHANGES.txt
|
||||
|
||||
# unpack
|
||||
echo unpack
|
||||
tar -x -z -f ${src} -C ${wrk}
|
||||
|
|
@ -41,6 +47,7 @@ done
|
|||
# move files to destination
|
||||
echo copy
|
||||
find ${wrk} -type f | xargs -J % mv % ${dst}
|
||||
mv CHANGES.txt ${dst}
|
||||
|
||||
# post-clean
|
||||
echo post-clean
|
||||
|
|
|
|||
Loading…
Reference in a new issue