From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Thu, 10 Sep 2020 20:21:12 -0600 Subject: [PATCH 01/16] Kconfig: Add a 'Boot options' menu In-Reply-To: <20200911022127.3451713-1-sjg@chromium.org> References: <20200911022127.3451713-1-sjg@chromium.org> Message-ID: <20200910202100.1.I428ce6ba0b6f09e1b9de31823756bf4a14b91cb8@changeid> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 883e3f71d01..3866b2b6e75 100644 --- a/Kconfig +++ b/Kconfig @@ -424,6 +424,8 @@ config SYS_SRAM_SIZE endmenu # General setup +menu "Boot options" + menu "Boot images" config ANDROID_BOOT_IMAGE @@ -762,6 +764,8 @@ config ARCH_FIXUP_FDT_MEMORY endmenu # Boot images +endmenu # Booting + source "api/Kconfig" source "common/Kconfig" -- 2.28.0.618.gf4bc123cb7-goog