1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-10-08 03:35:37 +02:00
Files
u-boot-megous/board/cavium/thunderx/Kconfig
Tom Rini 3dd1486800 Kconfig: Centralize prompting for SYS_CONFIG_NAME
Generally speaking, we do not prompt for this value and define it in the
board specific Kconfig file. There are some valid use cases however
today where we do prompt for this value, so instead of having this be
done in a number of locations, do this at the top-level location only.

This removes the question from a number of other locations and makes it
consistent that when we do set the value directly, we always do it the
same way. We don't need to specify the type, it's always string.

Signed-off-by: Tom Rini <trini@konsulko.com>
2024-02-27 14:18:54 -05:00

27 lines
433 B
Plaintext

if TARGET_THUNDERX_88XX
config SYS_CPU
string
default "armv8"
config SYS_BOARD
string
default "thunderx"
config SYS_VENDOR
string
default "cavium"
config SYS_CONFIG_NAME
default "thunderx_88xx"
config CMD_ATF
bool "Enable ATF query commands"
default y
help
Enable vendor specific ATF query commands such as SPI and SD/MMC
devices access, low level environment query, boot device layout
and node count.
endif