diff options
author | Simon Glass <sjg@chromium.org> | 2020-09-10 20:21:26 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-09 12:02:26 -0400 |
commit | a4c4ecf4c9b8768558a980d842c7db6fe35d570c (patch) | |
tree | 19d03d599244431f5b5e730fab72e5b9a64f1bcc | |
parent | d472d821f35a4b4e5a2d3302948a6f95d8cadfa5 (diff) | |
download | u-boot-a4c4ecf4c9b8768558a980d842c7db6fe35d570c.zip u-boot-a4c4ecf4c9b8768558a980d842c7db6fe35d570c.tar.gz u-boot-a4c4ecf4c9b8768558a980d842c7db6fe35d570c.tar.bz2 |
Kconfig: Move BOARD_TYPES under init options
This actually relates to something displayed on start-up, so move it into
that menu.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | common/Kconfig | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/common/Kconfig b/common/Kconfig index a1a898b..318d372 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -435,6 +435,14 @@ endmenu menu "Init options" +config BOARD_TYPES + bool "Call get_board_type() to get and display the board type" + help + If this option is enabled, checkboard() will call get_board_type() + to get a string containing the board type and this will be + displayed immediately after the model is shown on the console + early in boot. + config DISPLAY_CPUINFO bool "Display information about the CPU during start up" default y if ARC|| ARM || NIOS2 || X86 || XTENSA || M68K @@ -532,14 +540,6 @@ endmenu endmenu # Init options -config BOARD_TYPES - bool "Call get_board_type() to get and display the board type" - help - If this option is enabled, checkboard() will call get_board_type() - to get a string containing the board type and this will be - displayed immediately after the model is shown on the console - early in boot. - menu "Security support" config HASH |