[coreboot] [commit] r5903 - trunk

repository service svn at coreboot.org
Fri Oct 1 23:48:52 CEST 2010


Author: myles
Date: Fri Oct  1 23:48:52 2010
New Revision: 5903
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5903

Log:
Redirect the output of iasl to a file to make the build quieter.

Signed-off-by: Myles Watson <mylesgw at gmail.com>
Acked-by: Uwe Hermann <uwe at hermann-uwe.de>

Modified:
   trunk/Makefile

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	Fri Oct  1 23:46:04 2010	(r5902)
+++ trunk/Makefile	Fri Oct  1 23:48:52 2010	(r5903)
@@ -229,7 +229,7 @@
 $(obj)/$(1).ramstage.o: src/$(1).asl
 	@printf "    IASL       $$(subst $(top)/,,$$(@))\n"
 	$(CPP) -D__ACPI__ -P -include $(abspath $(obj)/config.h) -I$(src) -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl
-	iasl -p $$(obj)/$(1) -tc $$(basename $$@).asl
+	iasl -p $$(obj)/$(1) -tc $$(basename $$@).asl > $$(basename $$@).asl.out
 	mv $$(obj)/$(1).hex $$(basename $$@).c
 	$(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c
 	# keep %.o: %.c rule from catching the temporary .c file after a make clean




More information about the coreboot mailing list