tests/gnrc_ipv6_ext: move board specific deps in Makefile.board.dep
This commit is contained in:
parent
a131ea7576
commit
a06ac2afc0
@ -9,12 +9,8 @@ export TAP ?= tap0
|
|||||||
|
|
||||||
# use Ethernet as link-layer protocol
|
# use Ethernet as link-layer protocol
|
||||||
ifeq (native,$(BOARD))
|
ifeq (native,$(BOARD))
|
||||||
USEMODULE += netdev_tap
|
|
||||||
|
|
||||||
TERMFLAGS ?= $(TAP)
|
TERMFLAGS ?= $(TAP)
|
||||||
else
|
else
|
||||||
USEMODULE += stdio_ethos
|
|
||||||
|
|
||||||
ETHOS_BAUDRATE ?= 115200
|
ETHOS_BAUDRATE ?= 115200
|
||||||
CFLAGS += -DETHOS_BAUDRATE=$(ETHOS_BAUDRATE)
|
CFLAGS += -DETHOS_BAUDRATE=$(ETHOS_BAUDRATE)
|
||||||
TERMDEPS += ethos
|
TERMDEPS += ethos
|
||||||
|
|||||||
6
tests/gnrc_ipv6_ext/Makefile.board.dep
Normal file
6
tests/gnrc_ipv6_ext/Makefile.board.dep
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# Put board specific dependencies here
|
||||||
|
ifeq (native,$(BOARD))
|
||||||
|
USEMODULE += netdev_tap
|
||||||
|
else
|
||||||
|
USEMODULE += stdio_ethos
|
||||||
|
endif
|
||||||
Loading…
x
Reference in New Issue
Block a user