mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
22 lines
361 B
Bash
22 lines
361 B
Bash
|
|
#!/bin/sh
|
||
|
|
# $FreeBSD$
|
||
|
|
#
|
||
|
|
echo 'static char wakecode[] = {';
|
||
|
|
hexdump -Cv acpi_wakecode.bin | \
|
||
|
|
sed -e 's/^[0-9a-f][0-9a-f]*//' -e 's/\|.*$//' | \
|
||
|
|
while read line
|
||
|
|
do
|
||
|
|
for code in ${line}
|
||
|
|
do
|
||
|
|
echo -n "0x${code},";
|
||
|
|
done
|
||
|
|
done
|
||
|
|
echo '};'
|
||
|
|
|
||
|
|
nm -n acpi_wakecode.o | while read offset dummy what
|
||
|
|
do
|
||
|
|
echo "#define ${what} 0x${offset}"
|
||
|
|
done
|
||
|
|
|
||
|
|
exit 0
|