mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
790f70c725
This commit adds "select CPU_V7" for some new boards that were not
covered by commit 2e07c249a6
(kconfig: arm: introduce symbol for ARM CPUs).
Redundant "SYS_CPU" defines and "string" directives should be removed.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Stefan Roese <sr@denx.de>
Acked-by: Georges Savoundararadj <savoundg@gmail.com>
28 lines
452 B
Text
28 lines
452 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 USE_PRIVATE_LIBGCC
|
|
default y 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
|