mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
2ac07f75d1
This is based on the davinci da850evm. It can boot from either the on-board 16MB flash or from a microSD card. It also reads board information from an I2C EEPROM. The EV3 itself initally boots from write-protected EEPROM, so no u-boot SPL is needed. Signed-off-by: David Lechner <david@lechnology.com> Reviewed-by: Tom Rini <trini@konsulko.com>
39 lines
645 B
Text
39 lines
645 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"
|
|
|
|
config TARGET_LEGOEV3
|
|
bool "LEGO MINDSTORMS EV3"
|
|
|
|
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"
|
|
source "board/lego/ev3/Kconfig"
|
|
|
|
endif
|