mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
235a488977
The new network stack does not now the concept of the defaulttransceiver, so this fix makes auto_init_ng_netif work for now.
14 lines
343 B
Makefile
14 lines
343 B
Makefile
ifneq (,$(filter defaulttransceiver,$(USEMODULE)))
|
|
USEMODULE += nativenet
|
|
ifeq (,$(filter netdev_base,$(USEMODULE)))
|
|
USEMODULE += transceiver
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(filter ng_netif_default,$(USEMODULE)))
|
|
USEMODULE += ng_netif
|
|
USEMODULE += ng_nativenet
|
|
USEMODULE += ng_netdev_eth
|
|
USEMODULE += ng_nomac
|
|
endif
|