36 lines
641 B
Plaintext
36 lines
641 B
Plaintext
# Kconfig - ARM architecture configuration options
|
|
|
|
#
|
|
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
choice
|
|
prompt "ARM SoC Selection"
|
|
default SOC_SERIES_KINETIS_K6X
|
|
depends on ARM
|
|
|
|
source "arch/arm/soc/*/Kconfig.soc"
|
|
endchoice
|
|
|
|
menu "ARM Options"
|
|
depends on ARM
|
|
|
|
menu "SoC Configuration"
|
|
# Include these first so that any properties (e.g. defaults) below can be
|
|
# overriden (by defining symbols in multiple locations)
|
|
source "arch/arm/soc/*/Kconfig"
|
|
endmenu
|
|
|
|
source "arch/arm/core/Kconfig"
|
|
|
|
config ARCH
|
|
default "arm"
|
|
|
|
config ARCH_DEFCONFIG
|
|
string
|
|
default "arch/arm/defconfig"
|
|
|
|
endmenu
|