kconfig: armv8: move CONFIG_ARM64 to Kconfig

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
Masahiro Yamada
2014-09-14 03:01:51 +09:00
committed by Tom Rini
parent 8813fdaf4b
commit 016a954ee9
9 changed files with 18 additions and 14 deletions

View File

@@ -4,6 +4,9 @@ menu "ARM architecture"
config SYS_ARCH
default "arm"
config ARM64
bool
choice
prompt "Target select"
@@ -459,12 +462,15 @@ config TEGRA
config TARGET_VEXPRESS_AEMV8A
bool "Support vexpress_aemv8a"
select ARM64
config TARGET_LS2085A_EMU
bool "Support ls2085a_emu"
select ARM64
config TARGET_LS2085A_SIMU
bool "Support ls2085a_simu"
select ARM64
config TARGET_LS1021AQDS
bool "Support ls1021aqds_nor"
@@ -513,6 +519,8 @@ config TARGET_JORNADA
endchoice
source "arch/arm/cpu/armv8/Kconfig"
source "arch/arm/cpu/arm926ejs/davinci/Kconfig"
source "arch/arm/cpu/armv7/exynos/Kconfig"

View File

@@ -0,0 +1,6 @@
if ARM64
config SYS_CPU
default "armv8"
endif