]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/amd64/acpica/genwakedata.sh
Copy head to stable/8 as part of 8.0 Release cycle.
[FreeBSD/stable/8.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