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
This commit is contained in:
parent
9fe02e8c65
commit
59ef59ea94
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue