Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
b6058526
Commit
b6058526
authored
8 years ago
by
Martine Lenders
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile.dep
+1
-1
1 addition, 1 deletion
Makefile.dep
Makefile.pseudomodules
+1
-0
1 addition, 0 deletions
Makefile.pseudomodules
pkg/lwip/include/lwipopts.h
+6
-0
6 additions, 0 deletions
pkg/lwip/include/lwipopts.h
with
8 additions
and
1 deletion
Makefile.dep
+
1
−
1
View file @
b6058526
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Makefile.pseudomodules
+
1
−
0
View file @
b6058526
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
pkg/lwip/include/lwipopts.h
+
6
−
0
View file @
b6058526
...
...
@@ -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 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment