From b81736d475da7401a4a6316670eb7691165a02e8 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 10 Sep 2020 20:21:12 -0600 Subject: [PATCH] Kconfig: Add a 'Boot options' menu There are quite a few boot-related menu options at the top level. Create a new menu to hold these and move 'Boot images' into it. Signed-off-by: Simon Glass --- Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Kconfig b/Kconfig index 1a132f90e4..34f17eb943 100644 --- a/Kconfig +++ b/Kconfig @@ -432,6 +432,8 @@ config EXAMPLES endmenu # General setup +menu "Boot options" + menu "Boot images" config ANDROID_BOOT_IMAGE @@ -769,6 +771,8 @@ config ARCH_FIXUP_FDT_MEMORY endmenu # Boot images +endmenu # Booting + source "api/Kconfig" source "common/Kconfig"