diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2002-05-02 22:17:35 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2002-05-02 22:17:35 +0000 |
| commit | 59d72e9d8284b1f498a95f647727ff3de60a3860 (patch) | |
| tree | b1cfff4f86ff6e0a1c5cdfb76b1216b706e91ea9 | |
| parent | 90535973d5831dd42417f62fd3d98275315dcd59 (diff) | |
Notes
| -rw-r--r-- | sys/i386/acpica/genwakecode.pl | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/sys/i386/acpica/genwakecode.pl b/sys/i386/acpica/genwakecode.pl deleted file mode 100644 index 1f5aede59309..000000000000 --- a/sys/i386/acpica/genwakecode.pl +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/perl -# $FreeBSD$ -print "static char wakecode[] = {\n"; -open(BIN, "hexdump -Cv acpi_wakecode.bin|"); -while (<BIN>) { - s/^[0-9a-f]+//; - s/\|.*$//; - foreach (split()) { - print "0x$_,"; - } - print "\n"; -} -print "};\n"; -close(BIN); - -open(NM, "nm -n acpi_wakecode.o|"); -while (<NM>) { - split; - print "#define $_[2] 0x$_[0]\n"; -} -close(NM); - |
