Skip to content
Snippets Groups Projects
Commit 84351792 authored by Lokesh Vutla's avatar Lokesh Vutla Committed by Tom Rini
Browse files

common: Add DISPLAY_BOARDINFO


Create a Kconfig entry for DISPLAY_BOARDINFO and make it be the default
in certain architectures.  Migrate all config files.

Signed-off-by: default avatarLokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: default avatarTom Rini <trini@konsulko.com>
parent 19a97475
No related branches found
No related tags found
No related merge requests found
Showing
with 13 additions and 56 deletions
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "acadia" default "acadia"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "bamboo" default "bamboo"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "bubinga" default "bubinga"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -30,8 +30,4 @@ config ARCHES ...@@ -30,8 +30,4 @@ config ARCHES
endchoice endchoice
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "katmai" default "katmai"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "kilauea" default "kilauea"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "luan" default "luan"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "makalu" default "makalu"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "redwood" default "redwood"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "sequoia" default "sequoia"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "walnut" default "walnut"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "yosemite" default "yosemite"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "yucca" default "yucca"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -9,8 +9,4 @@ config SYS_VENDOR ...@@ -9,8 +9,4 @@ config SYS_VENDOR
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "lwmon5" default "lwmon5"
config DISPLAY_BOARDINFO
bool
default y
endif endif
...@@ -227,4 +227,12 @@ config DISPLAY_CPUINFO ...@@ -227,4 +227,12 @@ config DISPLAY_CPUINFO
when U-Boot starts up. The function print_cpuinfo() is called when U-Boot starts up. The function print_cpuinfo() is called
to do this. to do this.
config DISPLAY_BOARDINFO
bool "Display information about the board during start up"
default y if ARM || M68K || MIPS || PPC || SPARC || 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.
source "common/spl/Kconfig" source "common/spl/Kconfig"
...@@ -2,6 +2,7 @@ CONFIG_M68K=y ...@@ -2,6 +2,7 @@ CONFIG_M68K=y
CONFIG_TARGET_M5208EVBE=y CONFIG_TARGET_M5208EVBE=y
CONFIG_SYS_TEXT_BASE=0x00000000 CONFIG_SYS_TEXT_BASE=0x00000000
CONFIG_BOOTDELAY=1 CONFIG_BOOTDELAY=1
# CONFIG_DISPLAY_BOARDINFO is not set
CONFIG_SYS_PROMPT="-> " CONFIG_SYS_PROMPT="-> "
# CONFIG_CMD_SETEXPR is not set # CONFIG_CMD_SETEXPR is not set
CONFIG_CMD_MII=y CONFIG_CMD_MII=y
......
...@@ -3,6 +3,7 @@ CONFIG_TARGET_M52277EVB=y ...@@ -3,6 +3,7 @@ CONFIG_TARGET_M52277EVB=y
CONFIG_SYS_TEXT_BASE=0x00000000 CONFIG_SYS_TEXT_BASE=0x00000000
CONFIG_SYS_EXTRA_OPTIONS="SYS_SPANSION_BOOT" CONFIG_SYS_EXTRA_OPTIONS="SYS_SPANSION_BOOT"
CONFIG_BOOTDELAY=3 CONFIG_BOOTDELAY=3
# CONFIG_DISPLAY_BOARDINFO is not set
CONFIG_SYS_PROMPT="-> " CONFIG_SYS_PROMPT="-> "
CONFIG_CMD_SF=y CONFIG_CMD_SF=y
CONFIG_CMD_SPI=y CONFIG_CMD_SPI=y
......
...@@ -3,6 +3,7 @@ CONFIG_TARGET_M52277EVB=y ...@@ -3,6 +3,7 @@ CONFIG_TARGET_M52277EVB=y
CONFIG_SYS_TEXT_BASE=0x43E00000 CONFIG_SYS_TEXT_BASE=0x43E00000
CONFIG_SYS_EXTRA_OPTIONS="CF_SBF,SYS_STMICRO_BOOT" CONFIG_SYS_EXTRA_OPTIONS="CF_SBF,SYS_STMICRO_BOOT"
CONFIG_BOOTDELAY=3 CONFIG_BOOTDELAY=3
# CONFIG_DISPLAY_BOARDINFO is not set
CONFIG_CMD_SF=y CONFIG_CMD_SF=y
CONFIG_CMD_SPI=y CONFIG_CMD_SPI=y
CONFIG_CMD_I2C=y CONFIG_CMD_I2C=y
......
...@@ -3,6 +3,7 @@ CONFIG_TARGET_M5235EVB=y ...@@ -3,6 +3,7 @@ CONFIG_TARGET_M5235EVB=y
CONFIG_SYS_TEXT_BASE=0xFFC00000 CONFIG_SYS_TEXT_BASE=0xFFC00000
CONFIG_SYS_EXTRA_OPTIONS="NORFLASH_PS32BIT" CONFIG_SYS_EXTRA_OPTIONS="NORFLASH_PS32BIT"
CONFIG_BOOTDELAY=1 CONFIG_BOOTDELAY=1
# CONFIG_DISPLAY_BOARDINFO is not set
# CONFIG_CMD_LOADB is not set # CONFIG_CMD_LOADB is not set
# CONFIG_CMD_LOADS is not set # CONFIG_CMD_LOADS is not set
CONFIG_CMD_I2C=y CONFIG_CMD_I2C=y
......
...@@ -2,6 +2,7 @@ CONFIG_M68K=y ...@@ -2,6 +2,7 @@ CONFIG_M68K=y
CONFIG_TARGET_M5235EVB=y CONFIG_TARGET_M5235EVB=y
CONFIG_SYS_TEXT_BASE=0xFFE00000 CONFIG_SYS_TEXT_BASE=0xFFE00000
CONFIG_BOOTDELAY=1 CONFIG_BOOTDELAY=1
# CONFIG_DISPLAY_BOARDINFO is not set
CONFIG_SYS_PROMPT="-> " CONFIG_SYS_PROMPT="-> "
# CONFIG_CMD_LOADB is not set # CONFIG_CMD_LOADB is not set
# CONFIG_CMD_LOADS is not set # CONFIG_CMD_LOADS is not set
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment