8d5ed530d7
CMSIS uses an external KConfig so sourcing the KConfig is uncessary. This also adds a comment if it is not available. Signed-off-by: Ryan McClelland <ryanmcclelland@meta.com>
25 lines
398 B
Plaintext
25 lines
398 B
Plaintext
# Copyright (c) 2016 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config ZEPHYR_CMSIS_MODULE
|
|
bool
|
|
|
|
config HAS_CMSIS_CORE
|
|
bool
|
|
select HAS_CMSIS_CORE_A if CPU_AARCH32_CORTEX_A
|
|
select HAS_CMSIS_CORE_R if CPU_AARCH32_CORTEX_R
|
|
select HAS_CMSIS_CORE_M if CPU_CORTEX_M
|
|
|
|
if HAS_CMSIS_CORE
|
|
|
|
config HAS_CMSIS_CORE_A
|
|
bool
|
|
|
|
config HAS_CMSIS_CORE_R
|
|
bool
|
|
|
|
config HAS_CMSIS_CORE_M
|
|
bool
|
|
|
|
endif
|