diff --git a/drivers/Kconfig b/drivers/Kconfig index 6412a3b5fe..2cd1475318 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -6,6 +6,9 @@ menu "Drivers" +config MODULE_NETDEV_DEFAULT + bool "Enable default network devices on the platform" + rsource "saul/Kconfig" menu "Actuator Device Drivers" diff --git a/sys/net/link_layer/Kconfig b/sys/net/link_layer/Kconfig index 0c716c5275..bb915b4e01 100644 --- a/sys/net/link_layer/Kconfig +++ b/sys/net/link_layer/Kconfig @@ -5,6 +5,7 @@ # directory for more details. rsource "csma_sender/Kconfig" +rsource "eui_provider/Kconfig" rsource "ieee802154/Kconfig" rsource "l2filter/Kconfig" rsource "Kconfig.lorawan" diff --git a/sys/net/link_layer/eui_provider/Kconfig b/sys/net/link_layer/eui_provider/Kconfig new file mode 100644 index 0000000000..dee210b65c --- /dev/null +++ b/sys/net/link_layer/eui_provider/Kconfig @@ -0,0 +1,11 @@ +# Copyright (c) 2021 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_EUI_PROVIDER + bool "IEEE EUI-48/64 provider" + depends on TEST_KCONFIG + select MODULE_LUID diff --git a/sys/net/link_layer/ieee802154/Kconfig b/sys/net/link_layer/ieee802154/Kconfig index b50e1d9337..4b08734f5b 100644 --- a/sys/net/link_layer/ieee802154/Kconfig +++ b/sys/net/link_layer/ieee802154/Kconfig @@ -4,6 +4,27 @@ # General Public License v2.1. See the file LICENSE in the top level # directory for more details. +menuconfig MODULE_IEEE802154 + bool "IEEE 802.15.4 support" + depends on TEST_KCONFIG + +if MODULE_IEEE802154 + +config MODULE_IEEE802154_SECURITY + bool "IEEE 802.15.4 security" + select MODULE_CRYPTO + select MODULE_CIPHER_MODES + help + IEEE 802.15.4 security interface + +config MODULE_IEEE802154_SUBMAC + bool "IEEE 802.15.4 submac" + select MODULE_XTIMER + help + This module defines a common layer for handling the lower part of the IEEE 802.15.4 MAC layer. + +endif # MODULE_IEEE802154 + menuconfig KCONFIG_USEMODULE_IEEE802154 bool "Configure IEEE802.15.4" depends on USEMODULE_IEEE802154