1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/native/Makefile.dep
2023-02-25 14:01:20 +01:00

29 lines
657 B
Makefile

ifneq (,$(filter netdev_default,$(USEMODULE)))
ifeq (,$(filter socket_zep,$(USEMODULE)))
USEMODULE += netdev_tap
endif
endif
ifneq (,$(filter mtd,$(USEMODULE)))
USEMODULE += mtd_native
endif
ifneq (,$(filter periph_can,$(FEATURES_USED)))
USEPKG += libsocketcan
endif
# default to using littlefs2 on the virtual flash if no other fs was selected
ifneq (,$(filter vfs_default,$(USEMODULE)))
ifeq (,$(filter lwext%_vfs spiffs littlefs fatfs_vfs,$(USEMODULE)))
USEMODULE += littlefs2
endif
USEMODULE += mtd
endif
ifneq (,$(filter lvgl,$(USEPKG)))
USEPKG += lv_drivers
USEMODULE += lv_drivers_sdl
endif
USEMODULE += native_drivers