mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
3348c6b6a5
Enable this in the board Kconfig file, but then check for it via CONFIG_IS_ENABLED so that it will only be true in the non-SPL case, as is done today. As part of this we move some defines local to where they are used as it's board specific. Cc: Samuel Egli <samuel.egli@siemens.com> Signed-off-by: Tom Rini <trini@konsulko.com>
65 lines
757 B
Text
65 lines
757 B
Text
if TARGET_DRACO
|
|
|
|
config SYS_BOARD
|
|
default "draco"
|
|
|
|
config SYS_VENDOR
|
|
default "siemens"
|
|
|
|
config SYS_SOC
|
|
default "am33xx"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "draco"
|
|
|
|
endif
|
|
|
|
if TARGET_THUBAN
|
|
|
|
config SYS_BOARD
|
|
default "draco"
|
|
|
|
config SYS_VENDOR
|
|
default "siemens"
|
|
|
|
config SYS_SOC
|
|
default "am33xx"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "thuban"
|
|
|
|
endif
|
|
|
|
if TARGET_RASTABAN
|
|
|
|
config SYS_BOARD
|
|
default "draco"
|
|
|
|
config SYS_VENDOR
|
|
default "siemens"
|
|
|
|
config SYS_SOC
|
|
default "am33xx"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "rastaban"
|
|
|
|
endif
|
|
|
|
if TARGET_ETAMIN
|
|
|
|
config SYS_BOARD
|
|
default "draco"
|
|
|
|
config SYS_VENDOR
|
|
default "siemens"
|
|
|
|
config SYS_SOC
|
|
default "am33xx"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "etamin"
|
|
|
|
config NAND_CS_INIT
|
|
def_bool y
|
|
endif
|