diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-26 14:31:23 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-07 14:48:51 -0500 |
commit | fc97d9305809179ee7eec2a7b7ac62073a22f77c (patch) | |
tree | e0af988d1dfdc4cad236ecef7b080418e5678f4d | |
parent | 5bcfc7ab65d3b1edd90ccc5b09c9eaa98ea5cb4c (diff) |
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 <trini@konsulko.com>
-rw-r--r-- | boot/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index ba586c88bdf..971c9837bb4 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 |