[coreboot] [commit] r5038 - trunk/src/mainboard/intel/d945gclf
svn at coreboot.org
svn at coreboot.org
Mon Jan 18 16:08:15 CET 2010
Author: stepan
Date: 2010-01-18 16:08:14 +0100 (Mon, 18 Jan 2010)
New Revision: 5038
Modified:
trunk/src/mainboard/intel/d945gclf/Makefile.inc
Log:
run preprocessor on DSDT of D945GCLF, otherwise
smart iasl will segfault.
Signed-off-by: Stefan Reinauer <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>
Modified: trunk/src/mainboard/intel/d945gclf/Makefile.inc
===================================================================
--- trunk/src/mainboard/intel/d945gclf/Makefile.inc 2010-01-18 12:01:10 UTC (rev 5037)
+++ trunk/src/mainboard/intel/d945gclf/Makefile.inc 2010-01-18 15:08:14 UTC (rev 5038)
@@ -52,7 +52,8 @@
ifdef POST_EVALUATION
$(obj)/dsdt.c: $(src)/mainboard/$(MAINBOARDDIR)/dsdt.asl
- iasl -p dsdt -tc $(src)/mainboard/$(MAINBOARDDIR)/dsdt.asl
+ $(CPP) -D__ACPI__ -P $(CPPFLAGS) -include $(obj)/config.h -I$(src)/mainboard/$(MAINBOARDDIR) $(src)/mainboard/$(MAINBOARDDIR)/dsdt.asl -o $(obj)/dsdt.asl
+ iasl -p dsdt -tc $(obj)/dsdt.asl
mv dsdt.hex $@
$(obj)/mainboard/$(MAINBOARDDIR)/dsdt.o: $(obj)/dsdt.c
More information about the coreboot
mailing list