mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-19 21:05:21 +00:00
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>
29 lines
557 B
Plaintext
29 lines
557 B
Plaintext
# Copyright (c) 2018 Synopsys, Inc. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
choice
|
|
prompt "ARC nSIM SoC Selection"
|
|
default SOC_NSIM_EM
|
|
depends on SOC_NSIM
|
|
|
|
config SOC_NSIM_EM
|
|
bool "Synopsys ARC EM in nSIM"
|
|
select CPU_HAS_MPU
|
|
select CPU_HAS_FPU
|
|
|
|
config SOC_NSIM_SEM
|
|
bool "Synopsys ARC SEM in nSIM"
|
|
select CPU_HAS_MPU
|
|
select CPU_HAS_FPU
|
|
select ARC_HAS_SECURE
|
|
|
|
config SOC_NSIM_HS
|
|
bool "Synopsys ARC HS in nSIM"
|
|
select CPU_HAS_FPU
|
|
|
|
config SOC_NSIM_HS_SMP
|
|
bool "Multi-core Synopsys ARC HS in nSIM"
|
|
select CPU_HAS_FPU
|
|
|
|
endchoice
|