]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/mx6/Kconfig
arch: Make board selection choices optional
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / mx6 / Kconfig
1 if ARCH_MX6
2
3 config MX6
4         bool
5         default y
6
7 config MX6D
8         bool
9
10 config MX6DL
11         bool
12
13 config MX6Q
14         bool
15
16 config MX6QDL
17         bool
18
19 config MX6S
20         bool
21
22 config MX6SL
23         bool
24
25 config MX6SX
26         bool
27
28 choice
29         prompt "MX6 board select"
30         optional
31
32 config TARGET_SECOMX6
33         bool "Support secomx6 boards"
34         select CPU_V7
35
36 endchoice
37
38 config SYS_SOC
39         default "mx6"
40
41 source "board/seco/Kconfig"
42
43 endif