Skip to content
Snippets Groups Projects
Commit b6058526 authored by Martine Lenders's avatar Martine Lenders
Browse files

lwip: introduce MLD as pseudo-module and deactivate by default

parent 4a13324a
No related branches found
No related tags found
No related merge requests found
......@@ -365,7 +365,7 @@ ifneq (,$(filter lwip_sixlowpan,$(USEMODULE)))
USEMODULE += lwip_ipv6_autoconfig
endif
ifneq (,$(filter lwip_ipv6_autoconfig,$(USEMODULE)))
ifneq (,$(filter lwip_ipv6_autoconfig lwip_ipv6_mld,$(USEMODULE)))
USEMODULE += lwip_ipv6
endif
......
......@@ -25,6 +25,7 @@ PSEUDOMODULES += lwip_dhcp
PSEUDOMODULES += lwip_ethernet
PSEUDOMODULES += lwip_igmp
PSEUDOMODULES += lwip_ipv6_autoconfig
PSEUDOMODULES += lwip_ipv6_mld
PSEUDOMODULES += lwip_raw
PSEUDOMODULES += lwip_sixlowpan
PSEUDOMODULES += lwip_stats
......
......@@ -74,6 +74,12 @@ extern "C" {
#define LWIP_IPV6_AUTOCONFIG (0)
#endif /* MODULE_LWIP_IPV6_AUTOCONFIG */
#ifdef MODULE_LWIP_IPV6_MLD
#define LWIP_IPV6_MLD (1)
#else /* MODULE_LWIP_IPV6 */
#define LWIP_IPV6_MLD (0)
#endif /* MODULE_LWIP_IPV6 */
#ifdef MODULE_LWIP_IPV6
#define LWIP_IPV6 (1)
#else /* MODULE_LWIP_IPV6 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment