mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
66e04fb503
In stead of defining the board EEPROM address in the board headers let's define them in the board config files and make them configurable by Kconfig. Signed-off-by: Roger Quadros <rogerq@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
53 lines
591 B
Text
53 lines
591 B
Text
if TARGET_K2E_EVM
|
|
|
|
config SYS_BOARD
|
|
default "ks2_evm"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "k2e_evm"
|
|
|
|
endif
|
|
|
|
if TARGET_K2HK_EVM
|
|
|
|
config SYS_BOARD
|
|
default "ks2_evm"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "k2hk_evm"
|
|
|
|
endif
|
|
|
|
if TARGET_K2L_EVM
|
|
|
|
config SYS_BOARD
|
|
default "ks2_evm"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "k2l_evm"
|
|
|
|
endif
|
|
|
|
if TARGET_K2G_EVM
|
|
|
|
config SYS_BOARD
|
|
default "ks2_evm"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "k2g_evm"
|
|
|
|
endif
|
|
|
|
source "board/ti/common/Kconfig"
|