summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPatrice Chotard <patrice.chotard@st.com>2019-12-06 15:01:48 +0100
committerTom Rini <trini@konsulko.com>2020-01-08 09:27:44 -0500
commit38a6cce65737096b836d43a22f09b7a54c9d020c (patch)
treef7f8bd6df5807f9cb1b1399b1314372d6ea01caa /Makefile
parent14a2dee765fe0849a49d5007398eb64677ed1544 (diff)
Makefile: Fix CONFIG_SYS_UBOOT_START default value
This patches restores boot on boards which rely on CONFIG_SYS_UBOOT_START equal to CONFIG_SYS_TEXT_BASE when using SPL Fixes: d3e97b53c1f2 ("spl: fix entry_point equal to load_addr") Signed-off-by: Patrice Chotard <patrice.chotard@st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6f62d764db..cc126ebc53 100644
--- a/Makefile
+++ b/Makefile
@@ -1265,7 +1265,7 @@ u-boot.ldr.hex u-boot.ldr.srec: u-boot.ldr FORCE
# from the SPL U-Boot version.
#
ifndef CONFIG_SYS_UBOOT_START
-CONFIG_SYS_UBOOT_START := 0
+CONFIG_SYS_UBOOT_START := $(CONFIG_SYS_TEXT_BASE)
endif
# Boards with more complex image requirements can provide an .its source file