From: Tom Rini Date: Mon, 23 Mar 2026 19:52:47 +0000 (-0600) Subject: lmb: boot: Update dependencies within BOOT_DEFAULTS_CMDS X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6594e82bb93bc14d97ca16440f6387fa3e0c111;p=thirdparty%2Fu-boot.git 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 --- 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