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