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 <[email protected]> Acked-by: Stefan Reinauer <[email protected]> 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 -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

