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

Merge pull request #13782 from leandrolanzieri/pr/gnrc/ipv6_group_kconfig

gnrc/ipv6: Group IPv6 related Kconfig files
This commit is contained in:
Martine Lenders 2020-04-01 16:57:44 +02:00 committed by GitHub
commit b26566cdfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View File

@ -11,10 +11,6 @@ rsource "application_layer/dhcpv6/Kconfig"
rsource "link_layer/lorawan/Kconfig"
rsource "netif/Kconfig"
rsource "network_layer/ipv6/Kconfig"
rsource "network_layer/ipv6/blacklist/Kconfig"
rsource "network_layer/ipv6/ext/frag/Kconfig"
rsource "network_layer/ipv6/nib/Kconfig"
rsource "network_layer/ipv6/whitelist/Kconfig"
rsource "network_layer/sixlowpan/Kconfig"
endmenu # GNRC Network Stack

View File

@ -4,6 +4,8 @@
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
menu "IPv6"
menuconfig KCONFIG_MODULE_GNRC_IPV6
bool "Configure GNRC IPv6 module"
depends on MODULE_GNRC_IPV6
@ -17,3 +19,10 @@ config GNRC_IPV6_MSG_QUEUE_SIZE
default 8
endif # KCONFIG_MODULE_GNRC_IPV6
rsource "blacklist/Kconfig"
rsource "ext/frag/Kconfig"
rsource "nib/Kconfig"
rsource "whitelist/Kconfig"
endmenu # IPv6