mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
d7e8b2b98a
This board has not been converted to generic board by the deadline. Remove it. Signed-off-by: Simon Glass <sjg@chromium.org>
35 lines
562 B
Text
35 lines
562 B
Text
if ARCH_DAVINCI
|
|
|
|
choice
|
|
prompt "DaVinci board select"
|
|
optional
|
|
|
|
config TARGET_IPAM390
|
|
bool "IPAM390 board"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_DA850EVM
|
|
bool "DA850 EVM board"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_EA20
|
|
bool "EA20 board"
|
|
|
|
config TARGET_OMAPL138_LCDK
|
|
bool "OMAPL138 LCDK"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_CALIMAIN
|
|
bool "Calimain board"
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "davinci"
|
|
|
|
source "board/Barix/ipam390/Kconfig"
|
|
source "board/davinci/da8xxevm/Kconfig"
|
|
source "board/davinci/ea20/Kconfig"
|
|
source "board/omicron/calimain/Kconfig"
|
|
|
|
endif
|