Same deal as in commit eddd98f811 ("kconfig: Replace some single-symbol
'if's with 'depends on'"), for the remaining cases outside defconfig
files. See that commit for an explanation.
Will do the defconfigs separately in case there are any complaints
there.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
23 lines
478 B
Plaintext
23 lines
478 B
Plaintext
# Copyright (c) 2014 Wind River Systems, Inc.
|
|
# Copyright (c) 2018 Synopsys, Inc. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
choice
|
|
prompt "ARC EM Starter Kit Core Selection"
|
|
default SOC_EMSK_EM7D
|
|
depends on SOC_EMSK
|
|
|
|
config SOC_EMSK_EM7D
|
|
bool "Synopsys ARC EM7D of EMSK"
|
|
select CPU_HAS_MPU
|
|
|
|
config SOC_EMSK_EM11D
|
|
bool "Synopsys ARC EM11D of EMSK"
|
|
select CPU_HAS_FPU
|
|
|
|
config SOC_EMSK_EM9D
|
|
bool "Synopsys ARC EM9D of EMSK"
|
|
select CPU_HAS_FPU
|
|
|
|
endchoice
|