1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu: Add 'periph' module to Kconfig

Select it from cortexm_common module as it is always needed.
This commit is contained in:
Leandro Lanzieri 2020-07-27 16:22:32 +02:00
parent 0ddd2886b7
commit b98527ef53
No known key found for this signature in database
GPG Key ID: 13559905E2EBEAA5
2 changed files with 7 additions and 0 deletions

View File

@ -58,3 +58,9 @@ config MOD_CPU
depends on TEST_KCONFIG
help
Module which holds all CPU-specific files.
config MOD_PERIPH
bool
depends on TEST_KCONFIG
help
CPU peripheral implementations module.

View File

@ -8,6 +8,7 @@ config MOD_CORTEXM_COMMON
bool
default y if CPU_CORE_CORTEX_M
depends on TEST_KCONFIG
select MOD_PERIPH
help
Common code for Cortex-M cores.