From fc97d9305809179ee7eec2a7b7ac62073a22f77c Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Thu, 26 Oct 2023 14:31:23 -0400 Subject: [PATCH] boot: Make DISTRO_DEFAULTS select CMDLINE The implementation of DISTRO_DEFAULTS is done in environment scripts and requires the command line in order to work. Because of this, select CMDLINE here. Signed-off-by: Tom Rini --- boot/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/boot/Kconfig b/boot/Kconfig index ba586c88bd..971c9837bb 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -809,6 +809,7 @@ endmenu # Boot images config DISTRO_DEFAULTS bool "(deprecated) Script-based booting of Linux distributions" + select CMDLINE select BOOT_DEFAULTS select AUTO_COMPLETE select CMDLINE_EDITING -- 2.39.5