1be0c05311
Introduce the basic ARM64 architecture support. A new CONFIG_ARM64 symbol is introduced for the new architecture and new cmake / Kconfig files are added to switch between ARM and ARM64. Signed-off-by: Carlo Caione <ccaione@baylibre.com>
20 lines
301 B
Plaintext
20 lines
301 B
Plaintext
# ARM architecture configuration options
|
|
|
|
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menu "ARM Options"
|
|
depends on ARM
|
|
|
|
rsource "core/aarch32/Kconfig"
|
|
rsource "core/aarch64/Kconfig"
|
|
|
|
config ARCH
|
|
default "arm"
|
|
|
|
config ARM64
|
|
bool
|
|
select 64BIT
|
|
|
|
endmenu
|