blob: 43dd59fb1130f3dea59cd90e20d0f209bbf6ffc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
if TEGRA114
choice
prompt "Tegra114 board select"
optional
config TARGET_DALMORE
bool "NVIDIA Tegra114 Dalmore evaluation board"
select BOARD_LATE_INIT
config TARGET_SURFACE_2
bool "Microsoft Surface 2"
select BOARD_LATE_INIT
config TARGET_TEGRATAB
bool "NVIDIA Tegra114 TegraTab evaluation board"
select BOARD_LATE_INIT
config TARGET_TRANSFORMER_T114
bool "ASUS Tegra114 Transformer board"
select BOARD_LATE_INIT
endchoice
config SYS_SOC
default "tegra114"
source "board/nvidia/dalmore/Kconfig"
source "board/microsoft/surface-2/Kconfig"
source "board/nvidia/tegratab/Kconfig"
source "board/asus/transformer-t114/Kconfig"
endif
|