1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-21 12:33:49 +01:00

14 lines
385 B
Makefile

# if the sdcard_spi module is enabled, the SD Card Shield is used
ifneq (,$(filter sdcard_spi,$(USEMODULE)))
# default to using fatfs on SD card
ifneq (,$(filter vfs_default,$(USEMODULE)))
USEMODULE += fatfs_vfs
USEMODULE += mtd
endif
ifneq (,$(filter mtd,$(USEMODULE)))
USEMODULE += mtd_sdcard_default
endif
endif
include $(RIOTBOARD)/common/esp32/Makefile.dep