acpi: restructure genwakecode.sh
[dragonfly.git] / sys / platform / pc64 / acpica5 / genwakecode.sh
blob0e4499e0fde65bc177ff50b4c54a6ae573e9e02c
1 #!/bin/sh
2 # $FreeBSD: src/sys/i386/acpica/genwakecode.sh,v 1.1 2002/05/01 21:52:34 peter Exp $
3 # $DragonFly: src/sys/platform/pc32/acpica5/genwakecode.sh,v 1.1 2004/02/21 06:48:05 dillon Exp $
5 echo "/* generated from `pwd`/acpi_wakecode.o */"
6 echo 'static char wakecode[] = {';
7 hexdump -bv acpi_wakecode.bin | \
8 sed -e 's/^[0-9a-f][0-9a-f]*//' -e 's/\([[:digit:]]\{1,\}\) */0\1,/g'
9 echo '};'
11 nm -n acpi_wakecode.o | while read offset dummy what
13 echo "#define ${what} 0x${offset}"
14 done
16 exit 0