mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cbcf568263
The board white list was needed as temporary workaround during the KConfig migration. As the migration was aborted, the workaround should no longer be needed. Partially fixes https://github.com/RIOT-OS/RIOT/issues/20680
28 lines
576 B
Makefile
28 lines
576 B
Makefile
include ../Makefile.net_common
|
|
|
|
ifneq (,$(filter native native64,$(BOARD)))
|
|
ZEP_PORT_BASE ?= 17754
|
|
TERMFLAGS += -z [::1]:$(ZEP_PORT_BASE)
|
|
USEMODULE += socket_zep
|
|
endif
|
|
|
|
USEMODULE += od
|
|
USEMODULE += luid
|
|
USEMODULE += l2util
|
|
USEMODULE += ieee802154
|
|
USEMODULE += shell
|
|
USEMODULE += shell_cmds_default
|
|
USEMODULE += ps
|
|
USEMODULE += event_thread
|
|
USEMODULE += event_callback
|
|
USEMODULE += xtimer
|
|
USEMODULE += netdev_default
|
|
|
|
CFLAGS += -DEVENT_THREAD_MEDIUM_STACKSIZE=1024
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
ifneq (,$(filter bhp,$(USEMODULE)))
|
|
USEMODULE += bhp_event
|
|
endif
|