]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
lmb: boot: Update dependencies within BOOT_DEFAULTS_CMDS
authorTom Rini <trini@konsulko.com>
Mon, 23 Mar 2026 19:52:47 +0000 (13:52 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 7 Apr 2026 17:32:29 +0000 (11:32 -0600)
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 <trini@konsulko.com>
boot/Kconfig

index 982687621bd92d09681ea60d2fe3e3fce146d7eb..be6bb6d453559ee100576e6058ce879aa00622aa 100644 (file)
@@ -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