mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
2e07c249a6
This commit introduces a Kconfig symbol for each ARM CPU: CPU_ARM720T, CPU_ARM920T, CPU_ARM926EJS, CPU_ARM946ES, CPU_ARM1136, CPU_ARM1176, CPU_V7, CPU_PXA, CPU_SA1100. Also, it adds the CPU feature Kconfig symbol HAS_VBAR which is selected for CPU_ARM1176 and CPU_V7. For each target, the corresponding CPU is selected and the definition of SYS_CPU in the corresponding Kconfig file is removed. Also, it removes redundant "string" type in some Kconfig files. Signed-off-by: Georges Savoundararadj <savoundg@gmail.com> Acked-by: Albert ARIBAUD <albert.u.boot@aribaud.net> Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
67 lines
1.3 KiB
Text
67 lines
1.3 KiB
Text
if ARCH_EXYNOS
|
|
|
|
choice
|
|
prompt "EXYNOS board select"
|
|
|
|
config TARGET_SMDKV310
|
|
select SUPPORT_SPL
|
|
bool "Exynos4210 SMDKV310 board"
|
|
select OF_CONTROL if !SPL_BUILD
|
|
|
|
config TARGET_TRATS
|
|
bool "Exynos4210 Trats board"
|
|
|
|
config TARGET_S5PC210_UNIVERSAL
|
|
bool "EXYNOS4210 Universal C210 board"
|
|
|
|
config TARGET_ORIGEN
|
|
bool "Exynos4412 Origen board"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_TRATS2
|
|
bool "Exynos4412 Trat2 board"
|
|
|
|
config TARGET_ODROID
|
|
bool "Exynos4412 Odroid board"
|
|
|
|
config TARGET_ARNDALE
|
|
bool "Exynos5250 Arndale board"
|
|
select SUPPORT_SPL
|
|
select OF_CONTROL if !SPL_BUILD
|
|
|
|
config TARGET_SMDK5250
|
|
bool "SMDK5250 board"
|
|
select SUPPORT_SPL
|
|
select OF_CONTROL if !SPL_BUILD
|
|
|
|
config TARGET_SNOW
|
|
bool "Snow board"
|
|
select SUPPORT_SPL
|
|
select OF_CONTROL if !SPL_BUILD
|
|
|
|
config TARGET_SMDK5420
|
|
bool "SMDK5420 board"
|
|
select SUPPORT_SPL
|
|
select OF_CONTROL if !SPL_BUILD
|
|
|
|
config TARGET_PEACH_PIT
|
|
bool "Peach Pi board"
|
|
select SUPPORT_SPL
|
|
select OF_CONTROL if !SPL_BUILD
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "exynos"
|
|
|
|
source "board/samsung/smdkv310/Kconfig"
|
|
source "board/samsung/trats/Kconfig"
|
|
source "board/samsung/universal_c210/Kconfig"
|
|
source "board/samsung/origen/Kconfig"
|
|
source "board/samsung/trats2/Kconfig"
|
|
source "board/samsung/odroid/Kconfig"
|
|
source "board/samsung/arndale/Kconfig"
|
|
source "board/samsung/smdk5250/Kconfig"
|
|
source "board/samsung/smdk5420/Kconfig"
|
|
|
|
endif
|