From de032ef9c6fc5abb557348658d57c90acfd3e45c Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 31 May 2025 11:34:59 +0100 Subject: [PATCH] boot: Make BOOTM_LINUX depend on BOOT It is possible to boot Linux without the command line. Adjust the condition for CONFIG_BOOTM_LINUX to depend on CONFIG_BOOT instead of the various boot commands. --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/Kconfig b/cmd/Kconfig index c97492e55ea..1c21d6fa6b3 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -369,7 +369,7 @@ config CMD_BOOTI config BOOTM_LINUX bool "Support booting Linux OS images" - depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI + depends on BOOT default y help Support booting the Linux kernel directly via a command such as bootm