]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/mach-tegra/Kconfig
arch: Make board selection choices optional
[karo-tx-uboot.git] / arch / arm / mach-tegra / Kconfig
1 if TEGRA
2
3 choice
4         prompt "Tegra SoC select"
5         optional
6
7 config TEGRA20
8         bool "Tegra20 family"
9
10 config TEGRA30
11         bool "Tegra30 family"
12
13 config TEGRA114
14         bool "Tegra114 family"
15
16 config TEGRA124
17         bool "Tegra124 family"
18
19 endchoice
20
21 config SYS_MALLOC_F_LEN
22         default 0x1800
23
24 config USE_PRIVATE_LIBGCC
25         default y
26
27 config SPL_DM
28         default y
29
30 source "arch/arm/mach-tegra/tegra20/Kconfig"
31 source "arch/arm/mach-tegra/tegra30/Kconfig"
32 source "arch/arm/mach-tegra/tegra114/Kconfig"
33 source "arch/arm/mach-tegra/tegra124/Kconfig"
34
35 endif