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.
86 lines
1.6 KiB
86 lines
1.6 KiB
10 years ago
|
if ARCH_EXYNOS
|
||
|
|
||
|
choice
|
||
|
prompt "EXYNOS board select"
|
||
10 years ago
|
optional
|
||
10 years ago
|
|
||
|
config TARGET_SMDKV310
|
||
10 years ago
|
select SUPPORT_SPL
|
||
10 years ago
|
bool "Exynos4210 SMDKV310 board"
|
||
10 years ago
|
select OF_CONTROL
|
||
10 years ago
|
|
||
|
config TARGET_TRATS
|
||
|
bool "Exynos4210 Trats board"
|
||
|
|
||
|
config TARGET_S5PC210_UNIVERSAL
|
||
|
bool "EXYNOS4210 Universal C210 board"
|
||
|
|
||
|
config TARGET_ORIGEN
|
||
|
bool "Exynos4412 Origen board"
|
||
10 years ago
|
select SUPPORT_SPL
|
||
10 years ago
|
|
||
|
config TARGET_TRATS2
|
||
|
bool "Exynos4412 Trat2 board"
|
||
|
|
||
10 years ago
|
config TARGET_ODROID
|
||
|
bool "Exynos4412 Odroid board"
|
||
|
|
||
10 years ago
|
config TARGET_ODROID_XU3
|
||
|
bool "Exynos5422 Odroid board"
|
||
|
select OF_CONTROL
|
||
|
|
||
10 years ago
|
config TARGET_ARNDALE
|
||
|
bool "Exynos5250 Arndale board"
|
||
10 years ago
|
select CPU_V7_HAS_NONSEC
|
||
|
select CPU_V7_HAS_VIRT
|
||
10 years ago
|
select SUPPORT_SPL
|
||
10 years ago
|
select OF_CONTROL
|
||
10 years ago
|
|
||
|
config TARGET_SMDK5250
|
||
|
bool "SMDK5250 board"
|
||
10 years ago
|
select SUPPORT_SPL
|
||
10 years ago
|
select OF_CONTROL
|
||
10 years ago
|
|
||
|
config TARGET_SNOW
|
||
|
bool "Snow board"
|
||
10 years ago
|
select SUPPORT_SPL
|
||
10 years ago
|
select OF_CONTROL
|
||
10 years ago
|
|
||
9 years ago
|
config TARGET_SPRING
|
||
|
bool "Spring board"
|
||
|
select SUPPORT_SPL
|
||
|
select OF_CONTROL
|
||
|
select SPL_DISABLE_OF_CONTROL
|
||
|
|
||
10 years ago
|
config TARGET_SMDK5420
|
||
|
bool "SMDK5420 board"
|
||
10 years ago
|
select SUPPORT_SPL
|
||
10 years ago
|
select OF_CONTROL
|
||
10 years ago
|
|
||
10 years ago
|
config TARGET_PEACH_PI
|
||
10 years ago
|
bool "Peach Pi board"
|
||
10 years ago
|
select SUPPORT_SPL
|
||
10 years ago
|
select OF_CONTROL
|
||
10 years ago
|
|
||
10 years ago
|
config TARGET_PEACH_PIT
|
||
|
bool "Peach Pit board"
|
||
|
select SUPPORT_SPL
|
||
10 years ago
|
select OF_CONTROL
|
||
10 years ago
|
|
||
10 years ago
|
endchoice
|
||
|
|
||
|
config SYS_SOC
|
||
|
default "exynos"
|
||
|
|
||
|
source "board/samsung/smdkv310/Kconfig"
|
||
|
source "board/samsung/trats/Kconfig"
|
||
|
source "board/samsung/universal_c210/Kconfig"
|
||
|
source "board/samsung/origen/Kconfig"
|
||
|
source "board/samsung/trats2/Kconfig"
|
||
10 years ago
|
source "board/samsung/odroid/Kconfig"
|
||
10 years ago
|
source "board/samsung/arndale/Kconfig"
|
||
|
source "board/samsung/smdk5250/Kconfig"
|
||
|
source "board/samsung/smdk5420/Kconfig"
|
||
|
|
||
|
endif
|