1if TEGRA124 2 3choice 4 prompt "Tegra124 board select" 5 optional 6 7config TARGET_JETSON_TK1 8 bool "NVIDIA Tegra124 Jetson TK1 board" 9 10config 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 19config TARGET_VENICE2 20 bool "NVIDIA Tegra124 Venice2" 21 22endchoice 23 24config SYS_SOC 25 default "tegra124" 26 27source "board/nvidia/jetson-tk1/Kconfig" 28source "board/nvidia/nyan-big/Kconfig" 29source "board/nvidia/venice2/Kconfig" 30 31endif 32