]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/omap5/Kconfig
arch: Make board selection choices optional
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / omap5 / Kconfig
1 if OMAP54XX
2
3 choice
4         prompt "OMAP5 board select"
5         optional
6
7 config TARGET_CM_T54
8         bool "CompuLab CM-T54"
9
10 config TARGET_OMAP5_UEVM
11         bool "TI OMAP5 uEVM board"
12
13 config TARGET_DRA7XX_EVM
14         bool "TI DRA7XX"
15
16 config TARGET_BEAGLE_X15
17         bool "BeagleBoard X15"
18
19 endchoice
20
21 config SYS_SOC
22         default "omap5"
23
24 source "board/compulab/cm_t54/Kconfig"
25 source "board/ti/omap5_uevm/Kconfig"
26 source "board/ti/dra7xx/Kconfig"
27 source "board/ti/beagle_x15/Kconfig"
28
29 endif