]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/amd64/acpica/genwakedata.sh
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / amd64 / acpica / genwakedata.sh
1 #!/bin/sh
2 # $FreeBSD$
3 #
4 nm -n --defined-only acpi_wakecode.o | while read offset dummy what
5 do
6     echo "#define ${what}       0x${offset}"
7 done
8
9 exit 0