projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b4ae09
)
x86: efi: Don't use the 64-bit link script for the EFI app
author
Simon Glass
<sjg@chromium.org>
Tue, 4 Jan 2022 10:51:15 +0000
(
03:51
-0700)
committer
Heinrich Schuchardt
<heinrich.schuchardt@canonical.com>
Sat, 15 Jan 2022 09:57:22 +0000
(10:57 +0100)
That script is not intended for use with EFI, so update the logic to avoid
using it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Christian Melki <christian.melki@t2data.com>
arch/x86/cpu/config.mk
patch
|
blob
|
history
diff --git
a/arch/x86/cpu/config.mk
b/arch/x86/cpu/config.mk
index
d3033b4
..
87e242a
100644
(file)
--- a/
arch/x86/cpu/config.mk
+++ b/
arch/x86/cpu/config.mk
@@
-9,7
+9,7
@@
LDPPFLAGS += -DRESET_VEC_LOC=$(CONFIG_RESET_VEC_LOC)
LDPPFLAGS += -DSTART_16=$(CONFIG_SYS_X86_START16)
ifdef CONFIG_X86_64
-if
ndef CONFIG_SPL_BUILD
+if
eq ($(CONFIG_SPL_BUILD)$(CONFIG_EFI_APP),)
LDSCRIPT = $(srctree)/arch/x86/cpu/u-boot-64.lds
endif
endif