1if TEGRA30
2
3choice
4	prompt "Tegra30 board select"
5	optional
6
7config TARGET_APALIS_T30
8	bool "Toradex Apalis T30 board"
9
10config TARGET_BEAVER
11	bool "NVIDIA Tegra30 Beaver evaluation board"
12
13config TARGET_CARDHU
14	bool "NVIDIA Tegra30 Cardhu evaluation board"
15
16config TARGET_COLIBRI_T30
17	bool "Toradex Colibri T30 board"
18
19config TARGET_TEC_NG
20	bool "Avionic Design TEC-NG board"
21
22endchoice
23
24config SYS_SOC
25	default "tegra30"
26
27source "board/toradex/apalis_t30/Kconfig"
28source "board/nvidia/beaver/Kconfig"
29source "board/nvidia/cardhu/Kconfig"
30source "board/toradex/colibri_t30/Kconfig"
31source "board/avionic-design/tec-ng/Kconfig"
32
33endif
34