public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: u-boot@lists.denx.de
Subject: [PATCH] lmb: boot: Update dependencies within BOOT_DEFAULTS_CMDS
Date: Mon, 23 Mar 2026 13:52:47 -0600	[thread overview]
Message-ID: <20260323195247.2363434-1-trini@konsulko.com> (raw)

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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/boot/Kconfig b/boot/Kconfig
index f37e7a0c380b..75fd64f02054 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
-- 
2.43.0


             reply	other threads:[~2026-03-23 19:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-23 19:52 Tom Rini [this message]
2026-04-07 19:50 ` [PATCH] lmb: boot: Update dependencies within BOOT_DEFAULTS_CMDS Tom Rini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260323195247.2363434-1-trini@konsulko.com \
    --to=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox