From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Thu, 10 Sep 2020 20:21:19 -0600 Subject: [PATCH 08/16] Kconfig: Move SUPPORT_RAW_INITRD under boot options In-Reply-To: <20200911022127.3451713-1-sjg@chromium.org> References: <20200911022127.3451713-1-sjg@chromium.org> Message-ID: <20200910202100.8.I519104c66c405a590652239a44918c4ad46c1022@changeid> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This relates to booting, so move it under the 'boot images' menu. Signed-off-by: Simon Glass --- common/Kconfig | 8 -------- common/Kconfig.boot | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/common/Kconfig b/common/Kconfig index 703505b0818..bd9b574a8dc 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -433,14 +433,6 @@ endif endmenu -config SUPPORT_RAW_INITRD - bool "Enable raw initrd images" - help - Note, defining the SUPPORT_RAW_INITRD allows user to supply - kernel with raw initrd images. The syntax is slightly different, the - address of the initrd must be augmented by it's size, in the following - format: ":". - config DEFAULT_FDT_FILE string "Default fdt file" help diff --git a/common/Kconfig.boot b/common/Kconfig.boot index 297595bf8f4..e4c2d5a603b 100644 --- a/common/Kconfig.boot +++ b/common/Kconfig.boot @@ -264,6 +264,14 @@ config LEGACY_IMAGE_FORMAT loaded. If a board needs the legacy image format support in this case, enable it here. +config SUPPORT_RAW_INITRD + bool "Enable raw initrd images" + help + Note, defining the SUPPORT_RAW_INITRD allows user to supply + kernel with raw initrd images. The syntax is slightly different, the + address of the initrd must be augmented by it's size, in the following + format: ":". + config OF_BOARD_SETUP bool "Set up board-specific details in device tree before boot" depends on OF_LIBFDT -- 2.28.0.618.gf4bc123cb7-goog