diff options
author | Simon Glass <sjg@chromium.org> | 2015-08-04 12:33:53 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-08-05 08:44:07 -0600 |
commit | b997abd3f06f136b226431a2947520dd5a426869 (patch) | |
tree | 9927d12f074f04750d61e587dd9a59bba8d1b588 /arch/x86/lib/Makefile | |
parent | 476476e73b14696563524cbc2627a4c033ea64da (diff) | |
download | u-boot-imx-b997abd3f06f136b226431a2947520dd5a426869.zip u-boot-imx-b997abd3f06f136b226431a2947520dd5a426869.tar.gz u-boot-imx-b997abd3f06f136b226431a2947520dd5a426869.tar.bz2 |
x86: Support building the EFI stub
Add support for building a 32/64-bit EFI stub for x86. This involves
building the startup and relocation code for either i386 or x86_64.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/Makefile b/arch/x86/lib/Makefile index 43489fd..09c236b 100644 --- a/arch/x86/lib/Makefile +++ b/arch/x86/lib/Makefile @@ -34,7 +34,7 @@ obj-$(CONFIG_SYS_X86_TSC_TIMER) += tsc_timer.o obj-$(CONFIG_CMD_ZBOOT) += zimage.o obj-$(CONFIG_HAVE_FSP) += fsp/ -extra-$(CONFIG_USE_PRIVATE_LIBGCC) := lib.a +extra-$(CONFIG_USE_PRIVATE_LIBGCC) += lib.a NORMAL_LIBGCC = $(shell $(CC) $(PLATFORM_CPPFLAGS) -print-libgcc-file-name) OBJCOPYFLAGS := --prefix-symbols=__normal_ |