diff options
| author | Tom Rini <[email protected]> | 2026-03-23 13:52:47 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-07 11:32:29 -0600 |
| commit | a6594e82bb93bc14d97ca16440f6387fa3e0c111 (patch) | |
| tree | 936155309184b37c6f8592bbb3f20c6e1eca3fd8 | |
| parent | 504c4cdabda5dd602dc91bed4982739ede55339c (diff) | |
lmb: boot: Update dependencies within BOOT_DEFAULTS_CMDS
The CMD_BOOT[IZ] symbols have a dependency on LMB, correctly,
currently. Make sure that in BOOT_DEFAULTS_CMDS we only select these
commands if LMB is enabled.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | boot/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index 982687621bd..be6bb6d4535 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -434,8 +434,8 @@ config BOOT_DEFAULTS_CMDS select CMD_DHCP if CMD_NET && !NO_NET select CMD_PING if CMD_NET && !NO_NET select CMD_PXE if CMD_NET && !NO_NET - select CMD_BOOTI if ARM64 - select CMD_BOOTZ if ARM && !ARM64 + select CMD_BOOTI if ARM64 && LMB + select CMD_BOOTZ if ARM && !ARM64 && LMB imply CMD_MII if CMD_NET && !NO_NET config BOOT_DEFAULTS |
