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 <[email protected]>
Acked-by: Stefan Reinauer <[email protected]>



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


-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to