diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-11-13 12:28:41 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-23 06:49:02 -0500 |
commit | 37c9940a09d582bb90eed4e59110c388c90f2bf8 (patch) | |
tree | 5941fca8cbe795b534e0ac09488dad05b047b7e3 /arch/x86/cpu/Makefile | |
parent | 165ecd26f036b1952dbf25823fbff7c0a403a29f (diff) | |
download | u-boot-imx-37c9940a09d582bb90eed4e59110c388c90f2bf8.zip u-boot-imx-37c9940a09d582bb90eed4e59110c388c90f2bf8.tar.gz u-boot-imx-37c9940a09d582bb90eed4e59110c388c90f2bf8.tar.bz2 |
x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ directory
The references of CONFIG_SYS_COREBOOT in arch/x86/cpu/coreboot/Makefile
are redundant because the build system descends into the directory
only when CONFIG_SYS_COREBOOT is defined.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/cpu/Makefile')
-rw-r--r-- | arch/x86/cpu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/cpu/Makefile b/arch/x86/cpu/Makefile index b5ad1ba..8dd7b06 100644 --- a/arch/x86/cpu/Makefile +++ b/arch/x86/cpu/Makefile @@ -12,4 +12,4 @@ extra-y = start.o obj-$(CONFIG_X86_RESET_VECTOR) += resetvec.o start16.o obj-y += interrupts.o cpu.o call64.o -obj-y += $(if $(SOC),$(SOC)/) +obj-$(CONFIG_SYS_COREBOOT) += coreboot/ |