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