diff options
| author | Quentin Schulz <[email protected]> | 2025-12-12 19:13:18 +0100 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2025-12-24 12:06:44 +0800 |
| commit | a56270310af18db96fd45a2d59a0dc1ec2e26328 (patch) | |
| tree | 198b622543cf00452492f5f5d54da41ea5eaad22 /common | |
| parent | df724f1e3c3970f26a74d32772b3e450c4395989 (diff) | |
spl: fix prompt for SPL_BOOTROM_SUPPORT
SPL_BOOTROM_SUPPORT currently doesn't specify it enables returning to
BootROM *from SPL*, which TPL_BOOTROM_SUPPORT does say. So let's align
the prompts so that both say from which stage you can return to the
BootROM.
Fixes: 225d30b70846 ("spl: add a 'return to bootrom' boot method")
Signed-off-by: Quentin Schulz <[email protected]>
Reviewed-by: Anshul Dalal <[email protected]>
Reviewed-by: Kory Maincent <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/spl/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 9e0402f6827..4b10e9c3880 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -309,7 +309,7 @@ config SPL_LOAD_BLOCK to struct spl_load_info. config SPL_BOOTROM_SUPPORT - bool "Support returning to the BOOTROM" + bool "Support returning to the BOOTROM (from SPL)" select SPL_LOAD_BLOCK if MACH_IMX help Some platforms (e.g. the Rockchip RK3368) provide support in their |
