[coreboot] [v2] r4570 - trunk/coreboot-v2/src/arch/i386

svn at coreboot.org svn at coreboot.org
Tue Aug 25 14:18:05 CEST 2009


Author: uwe
Date: 2009-08-25 14:18:05 +0200 (Tue, 25 Aug 2009)
New Revision: 4570

Modified:
   trunk/coreboot-v2/src/arch/i386/Makefile.inc
Log:
Only build option_table.o if CONFIG_HAVE_OPTION_TABLE is 'y'.
Not all boards have an option table (cmos.layout).

Signed-off-by: Uwe Hermann <uwe at hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>



Modified: trunk/coreboot-v2/src/arch/i386/Makefile.inc
===================================================================
--- trunk/coreboot-v2/src/arch/i386/Makefile.inc	2009-08-25 04:12:55 UTC (rev 4569)
+++ trunk/coreboot-v2/src/arch/i386/Makefile.inc	2009-08-25 12:18:05 UTC (rev 4570)
@@ -5,7 +5,7 @@
 subdirs-y += lib
 subdirs-y += smp
 
-obj-y += ../../option_table.o
+obj-$(CONFIG_HAVE_OPTION_TABLE) += ../../option_table.o
 
 ifdef POST_EVALUATION
 BOOTBLOCK_SIZE=65536





More information about the coreboot mailing list