mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-24 02:45:10 +00:00
461be2f96e
Now the types of CONFIG_SYS_{ARCH, CPU, SOC, VENDOR, BOARD, CONFIG_NAME} are specified in arch/Kconfig. We can delete the ones in arch and board Kconfig files. This commit can be easily reproduced by the following command: find . -name Kconfig -a ! -path ./arch/Kconfig | xargs sed -i -e ' /config[[:space:]]SYS_\(ARCH\|CPU\|SOC\|\VENDOR\|BOARD\|CONFIG_NAME\)/ { N s/\n[[:space:]]*string// } ' Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
29 lines
480 B
Text
29 lines
480 B
Text
if TEGRA
|
|
|
|
choice
|
|
prompt "Tegra SoC select"
|
|
|
|
config TEGRA20
|
|
bool "Tegra20 family"
|
|
|
|
config TEGRA30
|
|
bool "Tegra30 family"
|
|
|
|
config TEGRA114
|
|
bool "Tegra114 family"
|
|
|
|
config TEGRA124
|
|
bool "Tegra124 family"
|
|
|
|
endchoice
|
|
|
|
config SYS_CPU
|
|
default "arm720t" if SPL_BUILD
|
|
default "armv7" if !SPL_BUILD
|
|
|
|
source "arch/arm/cpu/armv7/tegra20/Kconfig"
|
|
source "arch/arm/cpu/armv7/tegra30/Kconfig"
|
|
source "arch/arm/cpu/armv7/tegra114/Kconfig"
|
|
source "arch/arm/cpu/armv7/tegra124/Kconfig"
|
|
|
|
endif
|