diff options
author | Simon Glass | 2020-09-10 20:21:19 -0600 |
---|---|---|
committer | Tom Rini | 2020-10-09 12:01:55 -0400 |
commit | aefa34f55e455652b96100404b72f2f37e2e2c7b (patch) | |
tree | 8454f0e43ac026cce7dc9e9798eecf31390f4ebb /common/Kconfig.boot | |
parent | fe5db255f455fcaed48c919de53f77d0ebba0acb (diff) |
Kconfig: Move SUPPORT_RAW_INITRD under boot options
This relates to booting, so move it under the 'boot images' menu.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/Kconfig.boot')
-rw-r--r-- | common/Kconfig.boot | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common/Kconfig.boot b/common/Kconfig.boot index 6f66b899137..1696192e18e 100644 --- a/common/Kconfig.boot +++ b/common/Kconfig.boot @@ -263,6 +263,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: "<initrd address>:<initrd size>". + config OF_BOARD_SETUP bool "Set up board-specific details in device tree before boot" depends on OF_LIBFDT |