mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
40 lines
930 B
Makefile
40 lines
930 B
Makefile
|
DEVELHELP = 1
|
||
|
# name of your application
|
||
|
include ../Makefile.tests_common
|
||
|
|
||
|
export TAP ?= tap0
|
||
|
|
||
|
# use Ethernet as link-layer protocol
|
||
|
ifeq (native,$(BOARD))
|
||
|
TERMFLAGS ?= $(TAP)
|
||
|
else
|
||
|
ETHOS_BAUDRATE ?= 115200
|
||
|
CFLAGS += -DETHOS_BAUDRATE=$(ETHOS_BAUDRATE)
|
||
|
TERMDEPS += ethos
|
||
|
TERMPROG ?= sudo $(RIOTTOOLS)/ethos/ethos
|
||
|
TERMFLAGS ?= $(TAP) $(PORT) $(ETHOS_BAUDRATE)
|
||
|
endif
|
||
|
USEMODULE += auto_init_gnrc_netif
|
||
|
USEMODULE += gnrc_ipv6_default
|
||
|
USEMODULE += gnrc_icmpv6_error
|
||
|
USEMODULE += gnrc_pktdump
|
||
|
USEMODULE += gnrc_pktbuf_cmd
|
||
|
# IPv6 extension headers
|
||
|
USEMODULE += gnrc_ipv6_ext_opt
|
||
|
USEMODULE += od
|
||
|
# Add also the shell, some shell commands
|
||
|
USEMODULE += shell
|
||
|
USEMODULE += shell_commands
|
||
|
USEMODULE += ps
|
||
|
|
||
|
# The test requires some setup and to be run as root
|
||
|
# So it cannot currently be run
|
||
|
TEST_ON_CI_BLACKLIST += all
|
||
|
|
||
|
.PHONY: ethos
|
||
|
|
||
|
ethos:
|
||
|
$(Q)env -u CC -u CFLAGS make -C $(RIOTTOOLS)/ethos
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.include
|