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