upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
451 B
29 lines
451 B
if OMAP54XX
|
|
|
|
choice
|
|
prompt "OMAP5 board select"
|
|
optional
|
|
|
|
config TARGET_CM_T54
|
|
bool "CompuLab CM-T54"
|
|
|
|
config TARGET_OMAP5_UEVM
|
|
bool "TI OMAP5 uEVM board"
|
|
|
|
config TARGET_DRA7XX_EVM
|
|
bool "TI DRA7XX"
|
|
|
|
config TARGET_BEAGLE_X15
|
|
bool "BeagleBoard X15"
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "omap5"
|
|
|
|
source "board/compulab/cm_t54/Kconfig"
|
|
source "board/ti/omap5_uevm/Kconfig"
|
|
source "board/ti/dra7xx/Kconfig"
|
|
source "board/ti/beagle_x15/Kconfig"
|
|
|
|
endif
|
|
|