summaryrefslogtreecommitdiff
path: root/cmd/Kconfig
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-03-20 14:53:40 -0600
committerTom Rini <[email protected]>2026-04-03 13:42:49 -0600
commit5116481a7e604bf0985417f30d1a6fcbc89067b5 (patch)
tree65be3a97c30edb2c0eb053d8d3485effe6317f22 /cmd/Kconfig
parentc1e17ac28466f9ba68cb65daa9d7f8b4b3ae0a25 (diff)
lmb: Correct dependency around CMD_BOOT[IMZ]
The calls around lmb functions for these commands are not specific to SYS_BOOT_RAMDISK_HIGH but rather part of the general loading portion of the command itself currently. Move this dependency to the right spot. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r--cmd/Kconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 64e342caad1..c52d2078320 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -298,6 +298,7 @@ config CMD_BOOTD
config CMD_BOOTM
bool "bootm"
+ depends on LMB
default y
select LIB_BOOTM
help
@@ -376,6 +377,7 @@ config BOOTM_ELF
config CMD_BOOTZ
bool "bootz"
+ depends on LMB
select LIB_BOOTZ
select LIB_BOOTM
help
@@ -384,6 +386,7 @@ config CMD_BOOTZ
config CMD_BOOTI
bool "booti"
depends on ARM64 || RISCV || SANDBOX
+ depends on LMB
default y
select LIB_BOOTI
select LIB_BOOTM