aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/acpica/genwakedata.sh
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2010-07-12 21:08:35 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2010-07-12 21:08:35 +0000
commit588697d47836ceb0846a5eb15e821c7479f0d8a7 (patch)
tree7e5eea41970307d5954d4f124e550d863ca7c074 /sys/amd64/acpica/genwakedata.sh
parent05f81eb67de2bb2de5ee5c8e86aa8289d356b0ba (diff)
downloadsrc-588697d47836ceb0846a5eb15e821c7479f0d8a7.tar.gz
src-588697d47836ceb0846a5eb15e821c7479f0d8a7.zip
Move i386-inherited logic of building ACPI headers for acpi_wakeup.c into
better places and remove intermediate makefile and shell scripts. This makes parallel kernel build little bit safer for amd64.
Notes
Notes: svn path=/head/; revision=209957
Diffstat (limited to 'sys/amd64/acpica/genwakedata.sh')
-rwxr-xr-xsys/amd64/acpica/genwakedata.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/sys/amd64/acpica/genwakedata.sh b/sys/amd64/acpica/genwakedata.sh
deleted file mode 100755
index 6d4181ecacaf..000000000000
--- a/sys/amd64/acpica/genwakedata.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-#
-nm -n --defined-only acpi_wakecode.o | while read offset dummy what
-do
- echo "#define ${what} 0x${offset}"
-done
-
-exit 0