mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-01 17:10:11 +00:00
29ec685883
A few boards had not been fully re-synced with CONFIG_ARCH_MX5 / CONFIG_MX51 / CONFIG_MX53 being in Kconfig. Do so now. Signed-off-by: Tom Rini <trini@konsulko.com>
76 lines
1.2 KiB
Text
76 lines
1.2 KiB
Text
if ARCH_MX5
|
|
|
|
config MX5
|
|
bool
|
|
default y
|
|
|
|
config MX51
|
|
bool
|
|
|
|
config MX53
|
|
bool
|
|
|
|
choice
|
|
prompt "MX5 board select"
|
|
optional
|
|
|
|
config TARGET_M53EVK
|
|
bool "Support m53evk"
|
|
select MX53
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_MX51EVK
|
|
bool "Support mx51evk"
|
|
select BOARD_LATE_INIT
|
|
select MX51
|
|
|
|
config TARGET_MX53ARD
|
|
bool "Support mx53ard"
|
|
select MX53
|
|
|
|
config TARGET_MX53CX9020
|
|
bool "Support CX9020"
|
|
select BOARD_LATE_INIT
|
|
select MX53
|
|
select DM
|
|
select DM_SERIAL
|
|
|
|
config TARGET_MX53EVK
|
|
bool "Support mx53evk"
|
|
select BOARD_LATE_INIT
|
|
select MX53
|
|
|
|
config TARGET_MX53LOCO
|
|
bool "Support mx53loco"
|
|
select BOARD_LATE_INIT
|
|
select MX53
|
|
|
|
config TARGET_MX53SMD
|
|
bool "Support mx53smd"
|
|
select MX53
|
|
|
|
config TARGET_TS4800
|
|
bool "Support TS4800"
|
|
select MX51
|
|
select SYS_FSL_ERRATUM_ESDHC_A001
|
|
|
|
config TARGET_USBARMORY
|
|
bool "Support USB armory"
|
|
select MX53
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "mx5"
|
|
|
|
source "board/aries/m53evk/Kconfig"
|
|
source "board/beckhoff/mx53cx9020/Kconfig"
|
|
source "board/freescale/mx51evk/Kconfig"
|
|
source "board/freescale/mx53ard/Kconfig"
|
|
source "board/freescale/mx53evk/Kconfig"
|
|
source "board/freescale/mx53loco/Kconfig"
|
|
source "board/freescale/mx53smd/Kconfig"
|
|
source "board/inversepath/usbarmory/Kconfig"
|
|
source "board/technologic/ts4800/Kconfig"
|
|
|
|
endif
|