diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2007-11-13 21:20:13 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2007-11-13 21:20:13 +0000 |
commit | 59ef59ea9434f30758ac0aabcedd2a1417d451b8 (patch) | |
tree | 91e2e71063ef065d3eb0fbc2e00a4a9b0442940a | |
parent | 9fe02e8c65155355e8f076560d21936d8deedc24 (diff) | |
download | coreboot-59ef59ea9434f30758ac0aabcedd2a1417d451b8.tar.xz |
Fix ACPI issues brought up with Intel's latest ASL compiler.
iasl now defaults to put created files into the input file's path, not into the
current directory.
This (trivial) patch fixes the behavior for the northbridge specific ASL code.
Further checkins to be expected.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2968 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/northbridge/amd/amdk8/Config.lb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/amd/amdk8/Config.lb b/src/northbridge/amd/amdk8/Config.lb index de9c193512..9ef6ae34d4 100644 --- a/src/northbridge/amd/amdk8/Config.lb +++ b/src/northbridge/amd/amdk8/Config.lb @@ -21,7 +21,7 @@ if HAVE_ACPI_TABLES object amdk8_acpi.o makerule ssdt.c depends "$(TOP)/src/northbridge/amd/amdk8/ssdt.dsl" - action "iasl -tc $(TOP)/src/northbridge/amd/amdk8/ssdt.dsl" + action "iasl -p $(PWD)/ssdt -tc $(TOP)/src/northbridge/amd/amdk8/ssdt.dsl" action "perl -pi -e 's/AmlCode/AmlCode_ssdt/g' ssdt.hex" action "mv ssdt.hex ssdt.c" end |