diff options
author | Simon Glass <sjg@chromium.org> | 2017-01-16 07:04:12 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-02-06 11:38:46 +0800 |
commit | e1b610b0844ed2d463fd7b508c7bbe85e8093d49 (patch) | |
tree | 09fd439dc78b3420dca95101e3cd0d3b03a76803 /arch/x86/lib/Makefile | |
parent | fb355619b2472931f2252ed89780454619603915 (diff) | |
download | u-boot-imx-e1b610b0844ed2d463fd7b508c7bbe85e8093d49.zip u-boot-imx-e1b610b0844ed2d463fd7b508c7bbe85e8093d49.tar.gz u-boot-imx-e1b610b0844ed2d463fd7b508c7bbe85e8093d49.tar.bz2 |
x86: Don't build 32-bit efi files on x86_64
These cannot be built in this mode, so drop them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/lib/Makefile')
-rw-r--r-- | arch/x86/lib/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/lib/Makefile b/arch/x86/lib/Makefile index f737b7e..05e212f 100644 --- a/arch/x86/lib/Makefile +++ b/arch/x86/lib/Makefile @@ -48,7 +48,9 @@ OBJCOPYFLAGS := --prefix-symbols=__normal_ $(obj)/lib.a: $(NORMAL_LIBGCC) FORCE $(call if_changed,objcopy) +ifeq ($(CONFIG_$(SPL_)X86_64),) obj-$(CONFIG_EFI_APP) += crt0_ia32_efi.o reloc_ia32_efi.o +endif ifneq ($(CONFIG_EFI_STUB),) @@ -68,5 +70,7 @@ extra-$(CONFIG_EFI_STUB_64BIT) += crt0_x86_64_efi.o reloc_x86_64_efi.o endif ifneq ($(CONFIG_EFI_STUB)$(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),) +ifeq ($(CONFIG_$(SPL_)X86_64),) extra-y += $(EFI_CRT0) $(EFI_RELOC) endif +endif |