From: Marc Jones Date: Sun, 29 Apr 2012 17:20:53 +0000 (-0600) Subject: Add IASL definition to the Makefile. X-Git-Tag: rel-1.7.1~75 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=74f96123e7e37c219403b50e39dabc8e8c450948;p=seabios.git Add IASL definition to the Makefile. Add IASL definition to Makefile so it can be passed by the user. Signed-off-by: Marc Jones --- diff --git a/Makefile b/Makefile index 48715bf..7d01652 100644 --- a/Makefile +++ b/Makefile @@ -62,6 +62,7 @@ OBJCOPY=objcopy OBJDUMP=objdump STRIP=strip PYTHON=python +IASL:=iasl # Default targets -include $(KCONFIG_CONFIG) @@ -223,7 +224,7 @@ src/%.hex: src/%.dsl ./tools/acpi_extract_preprocess.py ./tools/acpi_extract.py @echo "Compiling DSDT" $(Q)cpp -P $< > $(OUT)$*.dsl.i.orig $(Q)$(PYTHON) ./tools/acpi_extract_preprocess.py $(OUT)$*.dsl.i.orig > $(OUT)$*.dsl.i - $(Q)iasl -l -tc -p $(OUT)$* $(OUT)$*.dsl.i + $(Q)$(IASL) -l -tc -p $(OUT)$* $(OUT)$*.dsl.i $(Q)$(PYTHON) ./tools/acpi_extract.py $(OUT)$*.lst > $(OUT)$*.off $(Q)cat $(OUT)$*.off > $@