summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMario Six <mario.six@gdsys.cc>2018-03-28 15:38:17 +0300
committerTom Rini <trini@konsulko.com>2018-04-08 22:12:09 +0300
commit78eba69d98b02aeba9faf00a89266282ec35fd44 (patch)
treeb0dd4cee0b77247bef58e115339b8d867effa167 /common
parent2aeb22d9ab02ba922ede2883391b314ac9e2baac (diff)
downloadu-boot-78eba69d98b02aeba9faf00a89266282ec35fd44.tar.xz
treewide: Migrate CONFIG_DISPLAY_BOARDINFO_LATE to Kconfig
Migrate the CONFIG_DISPLAY_BOARDINFO_LATE option to Kconfig. Signed-off-by: Mario Six <mario.six@gdsys.cc> [trini: Re-run migration] Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r--common/Kconfig9
1 files changed, 8 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 5c90ce4629..03eeeb2402 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -561,13 +561,20 @@ config DISPLAY_CPUINFO
to do this.
config DISPLAY_BOARDINFO
- bool "Display information about the board during start up"
+ bool "Display information about the board during early start up"
default y if ARM || M68K || MIPS || PPC || SANDBOX || XTENSA
help
Display information about the board that U-Boot is running on
when U-Boot starts up. The board function checkboard() is called
to do this.
+config DISPLAY_BOARDINFO_LATE
+ bool "Display information about the board during late start up"
+ help
+ Display information about the board that U-Boot is running on after
+ the relocation phase. The board function checkboard() is called to do
+ this.
+
menu "Start-up hooks"
config ARCH_EARLY_INIT_R