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