diff options
author | Jesse Taube <mr.bossman075@gmail.com> | 2023-08-24 21:59:48 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-09-30 15:24:43 -0400 |
commit | 6ab77bb14f61906b7ce0c486ebe46dbeab0502f3 (patch) | |
tree | 37c581bbcb412aecf5394bc7bf8407f7e9e78b1d /include/spl.h | |
parent | 90c81f407dd4a7747385b10f9b8f732202c45cde (diff) | |
download | u-boot-6ab77bb14f61906b7ce0c486ebe46dbeab0502f3.tar.gz u-boot-6ab77bb14f61906b7ce0c486ebe46dbeab0502f3.tar.bz2 u-boot-6ab77bb14f61906b7ce0c486ebe46dbeab0502f3.zip |
Convert CFG_SYS_UBOOT_START to Kconfig
Commit 65cc0e2a65d2 ("global: Move remaining CONFIG_SYS_* to CFG_SYS_*")
renamed CONFIG_SYS_UBOOT_START to CFG_SYS_UBOOT_START. Unfortunately,
this meant that the value was no longer available to the Makefile. This
caused imxrt to fail to boot. All the other boards that used this
variable were unaffected because they were using the default value
which is CONFIG_TEXT_BASE.
This commit converts CFG_SYS_UBOOT_START to Kconfig and sets the default
value to CONFIG_TEXT_BASE.
Suggested-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Suggested-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/spl.h')
-rw-r--r-- | include/spl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spl.h b/include/spl.h index 92bcaa90a4..57da1484f0 100644 --- a/include/spl.h +++ b/include/spl.h @@ -484,7 +484,7 @@ unsigned long spl_mmc_get_uboot_raw_sector(struct mmc *mmc, * spl_set_header_raw_uboot() - Set up a standard SPL image structure * * This sets up the given spl_image which the standard values obtained from - * config options: CONFIG_SYS_MONITOR_LEN, CFG_SYS_UBOOT_START, + * config options: CONFIG_SYS_MONITOR_LEN, CONFIG_SYS_UBOOT_START, * CONFIG_TEXT_BASE. * * @spl_image: Image description to set up |