diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2009-08-25 12:18:05 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2009-08-25 12:18:05 +0000 |
commit | f8f5b620a2fc7938d636531036047335b7b8aefb (patch) | |
tree | 2c800c7f8c8f325b72e82a7c67b0bc9c379462e6 /src/arch/i386 | |
parent | 1476a9ecc410ab1c8443332fc8e71fc5d16442e1 (diff) | |
download | coreboot-f8f5b620a2fc7938d636531036047335b7b8aefb.tar.xz |
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@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4570 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386')
-rw-r--r-- | src/arch/i386/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/Makefile.inc b/src/arch/i386/Makefile.inc index 7fed6f5387..c505740d85 100644 --- a/src/arch/i386/Makefile.inc +++ b/src/arch/i386/Makefile.inc @@ -5,7 +5,7 @@ subdirs-y += init 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 |