kernel: Remove some unused variables in network drivers.
[dragonfly.git] / sys / platform / pc32 / acpica5 / genwakecode.sh
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 $
4 #
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 '};'
10
11 nm -n acpi_wakecode.o | while read offset dummy what
12 do
13     echo "#define ${what}       0x${offset}"
14 done
15
16 exit 0