diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2006-11-19 19:24:06 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-11-19 19:24:06 +0000 |
commit | c22851011f21d6ec4d44172ed403b47e7d22171d (patch) | |
tree | 1d361a6a6c6db0a32f3e25f70c518e045f4385d3 /src/northbridge | |
parent | ed7bab8b0dabca6a3d8936b7b868e547c884006c (diff) | |
download | coreboot-c22851011f21d6ec4d44172ed403b47e7d22171d.tar.xz |
Fix hardcoding of iasl path. iasl is in the user path in the
pmtools packages of upcoming SUSE 10.2, too, so the problem will
go away. (new package installed on linuxbios.org, too)
See also
http://www.linuxbios.org/pipermail/linuxbios/2006-September/015968.html
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2498 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-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 bc6054f75d..de9c193512 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 "/usr/sbin/iasl -tc $(TOP)/src/northbridge/amd/amdk8/ssdt.dsl" + action "iasl -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 |