From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Thu, 10 Sep 2020 20:21:21 -0600 Subject: [PATCH 10/16] Kconfig: Create a new 'init options' menu In-Reply-To: <20200911022127.3451713-1-sjg@chromium.org> References: <20200911022127.3451713-1-sjg@chromium.org> Message-ID: <20200910202100.10.I2b7d55b956f766b4a861985d4853dfff7d427671@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 options at the top level relating to U-Boot init. Move them into their own menu. Signed-off-by: Simon Glass --- common/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/Kconfig b/common/Kconfig index 6423ab37973..3aa8cf358a0 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -433,6 +433,8 @@ endif endmenu +menu "Init options" + config MISC_INIT_R bool "Execute Misc Init" default y if ARCH_KEYSTONE || ARCH_SUNXI || MPC85xx @@ -483,6 +485,8 @@ config DISPLAY_BOARDINFO_LATE the relocation phase. The board function checkboard() is called to do this. +endmenu # Init options + config BOUNCE_BUFFER bool "Include bounce buffer API" help -- 2.28.0.618.gf4bc123cb7-goog