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
3acc8718
Commit
3acc8718
authored
9 years ago
by
Martine Lenders
Browse files
Options
Downloads
Patches
Plain Diff
ng_net: add 6LoWPAN as dependency for IEEE 802.15.4 devices
Only applies if ng_ipv6 also was included.
parent
8cb0e592
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile.dep
+28
-4
28 additions, 4 deletions
Makefile.dep
Makefile.pseudomodules
+1
-0
1 addition, 0 deletions
Makefile.pseudomodules
with
29 additions
and
4 deletions
Makefile.dep
+
28
−
4
View file @
3acc8718
...
...
@@ -56,6 +56,34 @@ ifneq (,$(filter ng_nomac,$(USEMODULE)))
USEMODULE
+=
ng_netbase
endif
ifneq
(,$(filter ng_at86rf2%,$(USEMODULE)))
USEMODULE
+=
ng_at86rf2xx
USEMODULE
+=
ng_ieee802154
endif
ifneq
(,$(filter kw2xrf,$(USEMODULE)))
USEMODULE
+=
ng_ieee802154
endif
ifneq
(,$(filter xbee,$(USEMODULE)))
USEMODULE
+=
ng_ieee802154
endif
ifneq
(,$(filter ng_ieee802154,$(USEMODULE)))
ifneq
(,$(filter ng_ipv6, $(USEMODULE)))
USEMODULE
+=
ng_sixlowpan
endif
ifneq
(,$(filter ng_ipv6_router, $(USEMODULE)))
USEMODULE
+=
ng_sixlowpan
# TODO: replace with ng_sixlowpan_router
endif
ifneq
(,$(filter ng_ipv6_default, $(USEMODULE)))
USEMODULE
+=
ng_sixlowpan_default
endif
ifneq
(,$(filter ng_ipv6_router_default, $(USEMODULE)))
USEMODULE
+=
ng_sixlowpan_default
# TODO: replace with ng_sixlowpan_router_default
endif
endif
ifneq
(,$(filter ng_sixlowpan_default,$(USEMODULE)))
USEMODULE
+=
ng_ipv6_default
USEMODULE
+=
ng_sixlowpan
...
...
@@ -246,10 +274,6 @@ ifneq (,$(filter oonf_common,$(USEMODULE)))
USEMODULE
+=
socket_base
endif
ifneq
(,$(filter ng_at86rf2%,$(USEMODULE)))
USEMODULE
+=
ng_at86rf2xx
endif
# if any log_* is used, also use LOG pseudomodule
ifneq
(,$(filter log_%,$(USEMODULE)))
USEMODULE
+=
log
...
...
This diff is collapsed.
Click to expand it.
Makefile.pseudomodules
+
1
−
0
View file @
3acc8718
PSEUDOMODULES
+=
defaulttransceiver
PSEUDOMODULES
+=
transport_layer
PSEUDOMODULES
+=
ng_ieee802154
PSEUDOMODULES
+=
ng_ipv6_default
PSEUDOMODULES
+=
ng_ipv6_router
PSEUDOMODULES
+=
ng_ipv6_router_default
...
...
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