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

cpu/native/cli_eui_provider: model in Kconfig

This commit is contained in:
Leandro Lanzieri 2022-03-14 09:28:05 +01:00
parent e0bd45ef59
commit 6679663647
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593
2 changed files with 14 additions and 0 deletions

View File

@ -25,6 +25,7 @@ config CPU_ARCH_NATIVE
# needed modules
select MODULE_PERIPH if TEST_KCONFIG
select MODULE_NATIVE_CLI_EUI_PROVIDER if MODULE_EUI_PROVIDER
config CPU_CORE_NATIVE
bool
@ -87,6 +88,7 @@ menu "Native modules"
depends on CPU_ARCH_NATIVE
rsource "backtrace/Kconfig"
rsource "cli_eui_provider/Kconfig"
endmenu # Native modules

View File

@ -0,0 +1,12 @@
# Copyright (c) 2022 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config MODULE_NATIVE_CLI_EUI_PROVIDER
bool "Command-line EUI provider"
depends on TEST_KCONFIG
depends on CPU_ARCH_NATIVE
select MODULE_L2UTIL