diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-05-11 07:44:58 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-05-23 15:18:00 +0800 |
commit | 548344912f791ff7f7f932afdaf669f45a20448b (patch) | |
tree | 7412bbce4a05e125f276d8e8b652dee748b3bd1d /arch/x86/lib/Makefile | |
parent | 10d569ea1a6083eec6022dfd1e6b35e74c962ee3 (diff) | |
download | u-boot-548344912f791ff7f7f932afdaf669f45a20448b.tar.gz u-boot-548344912f791ff7f7f932afdaf669f45a20448b.tar.xz u-boot-548344912f791ff7f7f932afdaf669f45a20448b.zip |
x86: Compile coreboot_table.c only for SeaBIOS
coreboot_table.c only needs to be built when SeaBIOS is used.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/lib/Makefile')
-rw-r--r-- | arch/x86/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/Makefile b/arch/x86/lib/Makefile index ce5eb8202b..e17f0bb0f2 100644 --- a/arch/x86/lib/Makefile +++ b/arch/x86/lib/Makefile @@ -10,7 +10,7 @@ obj-y += bios_asm.o obj-y += bios_interrupts.o obj-$(CONFIG_CMD_BOOTM) += bootm.o obj-y += cmd_boot.o -obj-y += coreboot_table.o +obj-$(CONFIG_SEABIOS) += coreboot_table.o obj-$(CONFIG_EFI) += efi/ obj-y += e820.o obj-y += gcc.o |