blob: b6a558b235ea6baefba6d7c3a913c0f49b5821e2 [file] [log] [blame]
Masahiro Yamadac54550b2014-08-31 07:11:00 +09001if ARCH_EXYNOS
2
3choice
4 prompt "EXYNOS board select"
5
6config TARGET_SMDKV310
7 bool "Exynos4210 SMDKV310 board"
8
9config TARGET_TRATS
10 bool "Exynos4210 Trats board"
11
12config TARGET_S5PC210_UNIVERSAL
13 bool "EXYNOS4210 Universal C210 board"
14
15config TARGET_ORIGEN
16 bool "Exynos4412 Origen board"
17
18config TARGET_TRATS2
19 bool "Exynos4412 Trat2 board"
20
Przemyslaw Marczaka314d9e2014-09-01 13:50:53 +020021config TARGET_ODROID
22 bool "Exynos4412 Odroid board"
23
Masahiro Yamadac54550b2014-08-31 07:11:00 +090024config TARGET_ARNDALE
25 bool "Exynos5250 Arndale board"
26
27config TARGET_SMDK5250
28 bool "SMDK5250 board"
29
30config TARGET_SNOW
31 bool "Snow board"
32
33config TARGET_SMDK5420
34 bool "SMDK5420 board"
35
36config TARGET_PEACH_PIT
37 bool "Peach Pi board"
38
39endchoice
40
41config SYS_CPU
42 string
43 default "armv7"
44
45config SYS_SOC
46 string
47 default "exynos"
48
49source "board/samsung/smdkv310/Kconfig"
50source "board/samsung/trats/Kconfig"
51source "board/samsung/universal_c210/Kconfig"
52source "board/samsung/origen/Kconfig"
53source "board/samsung/trats2/Kconfig"
Przemyslaw Marczaka314d9e2014-09-01 13:50:53 +020054source "board/samsung/odroid/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +090055source "board/samsung/arndale/Kconfig"
56source "board/samsung/smdk5250/Kconfig"
57source "board/samsung/smdk5420/Kconfig"
58
59endif