From: Tom Rini Date: Mon, 23 Mar 2026 19:52:49 +0000 (-0600) Subject: cmd: Correct dependencies for CMD_BOOTD X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1fd04cf46baf108147c090e04d56ab84df2430a9;p=thirdparty%2Fu-boot.git cmd: Correct dependencies for CMD_BOOTD The CMD_BOOTD functionality can only work with CMD_BOOTM enabled, so express this dependency in Kconfig. Signed-off-by: Tom Rini --- diff --git a/cmd/Kconfig b/cmd/Kconfig index ff6ad37fbe4..0ddf300efab 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -292,6 +292,7 @@ menu "Boot commands" config CMD_BOOTD bool "bootd" + depends on CMD_BOOTM default y help Run the command stored in the environment "bootcmd", i.e.