1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

Merge pull request #14379 from benpicco/boards/purge_gnrc_netdev_default

boards: purge gnrc_netdev_default
This commit is contained in:
benpicco 2020-06-27 18:44:16 +02:00 committed by GitHub
commit d687ed4a5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
endif
ifneq (,$(filter feather-m0-wifi,$(USEMODULE)))
ifneq (,$(filter gnrc_netdev_default netdev_default,$(USEMODULE)))
ifneq (,$(filter netdev_default,$(USEMODULE)))
USEMODULE += atwinc15x0
endif
endif

View File

@ -69,7 +69,7 @@ endif
LINKFLAGS += -ffunction-sections
# set the tap interface for term/valgrind
ifneq (,$(filter netdev_default gnrc_netdev_default,$(USEMODULE)))
ifneq (,$(filter netdev_default,$(USEMODULE)))
PORT ?= tap0
endif