1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

Kconfig: Expose gnrc/ipv6/blacklist configurations

This commit is contained in:
Leandro Lanzieri 2019-12-11 10:51:04 +01:00
parent 56e61dac47
commit 3383bae8fe
2 changed files with 20 additions and 0 deletions

View File

@ -7,6 +7,7 @@
menu "GNRC Network stack"
depends on MODULE_GNRC
rsource "network_layer/ipv6/blacklist/Kconfig"
rsource "network_layer/ipv6/whitelist/Kconfig"
endmenu # GNRC Network Stack

View File

@ -0,0 +1,19 @@
# Copyright (c) 2019 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.
#
menuconfig KCONFIG_MODULE_GNRC_IPV6_BLACKLIST
bool "Configure GNRC IPv6 Blacklisting"
depends on MODULE_GNRC_IPV6_BLACKLIST
help
Configure GNRC IPv6 Blacklisting module using Kconfig.
if KCONFIG_MODULE_GNRC_IPV6_BLACKLIST
config GNRC_IPV6_BLACKLIST_SIZE
int "Maximum size of the blacklist"
default 8
endif # KCONFIG_MODULE_GNRC_IPV6_BLACKLIST