mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
29 lines
642 B
Makefile
29 lines
642 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 host fs pass-through if no other fs was selected
|
|
ifneq (,$(filter vfs_default,$(USEMODULE)))
|
|
ifeq (,$(filter lwext%_vfs spiffs littlefs% fatfs_vfs,$(USEMODULE)))
|
|
USEMODULE += fs_native
|
|
endif
|
|
USEMODULE += mtd
|
|
endif
|
|
|
|
ifneq (,$(filter lvgl,$(USEPKG)))
|
|
USEPKG += lv_drivers
|
|
USEMODULE += lv_drivers_sdl
|
|
endif
|
|
|
|
USEMODULE += native_drivers
|