blob: f1cacdce2951973bb420a577049ca998ce2be472 [file] [log] [blame]
Masahiro Yamada72df68c2014-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
21config TARGET_ARNDALE
22 bool "Exynos5250 Arndale board"
23
24config TARGET_SMDK5250
25 bool "SMDK5250 board"
26
27config TARGET_SNOW
28 bool "Snow board"
29
30config TARGET_SMDK5420
31 bool "SMDK5420 board"
32
33config TARGET_PEACH_PIT
34 bool "Peach Pi board"
35
36endchoice
37
38config SYS_CPU
39 string
40 default "armv7"
41
42config SYS_SOC
43 string
44 default "exynos"
45
46source "board/samsung/smdkv310/Kconfig"
47source "board/samsung/trats/Kconfig"
48source "board/samsung/universal_c210/Kconfig"
49source "board/samsung/origen/Kconfig"
50source "board/samsung/trats2/Kconfig"
51source "board/samsung/arndale/Kconfig"
52source "board/samsung/smdk5250/Kconfig"
53source "board/samsung/smdk5420/Kconfig"
54
55endif