1if TEGRA20
2
3choice
4	prompt "Tegra20 board select"
5
6config TARGET_HARMONY
7	bool "NVIDIA Tegra20 Harmony evaluation board"
8
9config TARGET_MEDCOM_WIDE
10	bool "Avionic Design Medcom-Wide board"
11
12config TARGET_PAZ00
13	bool "Paz00 board"
14
15config TARGET_PLUTUX
16	bool "Avionic Design Plutux board"
17
18config TARGET_SEABOARD
19	bool "NVIDIA Seaboard"
20
21config TARGET_TEC
22	bool "Avionic Design Tamonten Evaluation Carrier"
23
24config TARGET_TRIMSLICE
25	bool "Compulab TrimSlice board"
26
27config TARGET_VENTANA
28	bool "NVIDIA Tegra20 Ventana evaluation board"
29
30config TARGET_WHISTLER
31	bool "NVIDIA Tegra20 Whistler evaluation board"
32
33config TARGET_COLIBRI_T20_IRIS
34	bool "Toradex Colibri T20 board"
35
36endchoice
37
38config SYS_SOC
39	default "tegra20"
40
41source "board/nvidia/harmony/Kconfig"
42source "board/avionic-design/medcom-wide/Kconfig"
43source "board/compal/paz00/Kconfig"
44source "board/avionic-design/plutux/Kconfig"
45source "board/nvidia/seaboard/Kconfig"
46source "board/avionic-design/tec/Kconfig"
47source "board/compulab/trimslice/Kconfig"
48source "board/nvidia/ventana/Kconfig"
49source "board/nvidia/whistler/Kconfig"
50source "board/toradex/colibri_t20_iris/Kconfig"
51
52endif
53