]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/mach-tegra/tegra124/Kconfig
arch: Make board selection choices optional
[karo-tx-uboot.git] / arch / arm / mach-tegra / tegra124 / Kconfig
1 if TEGRA124
2
3 choice
4         prompt "Tegra124 board select"
5         optional
6
7 config TARGET_JETSON_TK1
8         bool "NVIDIA Tegra124 Jetson TK1 board"
9
10 config TARGET_NYAN_BIG
11         bool "Google/NVIDIA Nyan-big Chrombook"
12         help
13           Nyan Big is a Tegra124 clamshell board that is very similar
14           to venice2, but it has a different panel, the sdcard CD and WP
15           sense are flipped, and it has a different revision of the AS3722
16           PMIC. The retail name is the Acer Chromebook 13 CB5-311-T7NN
17           (13.3-inch HD, NVIDIA Tegra K1, 2GB).
18
19 config TARGET_VENICE2
20         bool "NVIDIA Tegra124 Venice2"
21
22 endchoice
23
24 config SYS_SOC
25         default "tegra124"
26
27 source "board/nvidia/jetson-tk1/Kconfig"
28 source "board/nvidia/nyan-big/Kconfig"
29 source "board/nvidia/venice2/Kconfig"
30
31 endif