File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -111,13 +111,17 @@ endif
111111
112112# Addition of missing modules for boards that do not have physical network
113113# module - a dirty hack when lwip_dhcp is used for IPv4 (use of lwip_ipv4 module)
114- # on such boards (lack of netdev_new_api module)
114+ # on such boards (lack of netdev_eth module)
115+ #
116+ # This is dirty-hack" to solve compilation problem
117+ # TODO:
118+ # Find the root cause of the problem. PR #17174 and PR #17162 could be a good
119+ # starting point.
115120ifneq (,$(filter lwip_dhcp,$(USEMODULE)))
116121 ifneq (,$(filter lwip_ipv4,$(USEMODULE)))
117- ifeq (,$(filter netdev_new_api ,$(USEMODULE)))
122+ ifeq (,$(filter netdev_eth ,$(USEMODULE)))
118123 USEMODULE += netdev_eth
119- USEMODULE += netdev_new_api
120- endif
124+ endif
121125 endif
122126endif
123127
You can’t perform that action at this time.
0 commit comments