]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/s5pc1xx/Kconfig
arch: Make board selection choices optional
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / s5pc1xx / Kconfig
1 if ARCH_S5PC1XX
2
3 choice
4         prompt "S5PC1XX board select"
5         optional
6
7 config TARGET_S5P_GONI
8         bool "S5P Goni board"
9         select OF_CONTROL
10
11 config TARGET_SMDKC100
12         bool "Support smdkc100 board"
13         select OF_CONTROL
14
15 endchoice
16
17 config SYS_SOC
18         default "s5pc1xx"
19
20 source "board/samsung/goni/Kconfig"
21 source "board/samsung/smdkc100/Kconfig"
22
23 endif