From 74f96123e7e37c219403b50e39dabc8e8c450948 Mon Sep 17 00:00:00 2001 From: Marc Jones Date: Sun, 29 Apr 2012 11:20:53 -0600 Subject: [PATCH] Add IASL definition to the Makefile. Add IASL definition to Makefile so it can be passed by the user. Signed-off-by: Marc Jones --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 > $@ -- 2.39.5