1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/vfs_default/Makefile
Marian Buschsieweke 0991702707
tests/vfs_default: increase stack size for AVR
This avoids an stack overflow when using `vfs ls`.
2022-09-11 10:27:40 +02:00

16 lines
372 B
Makefile

include ../Makefile.tests_common
USEMODULE += vfs_default
USEMODULE += vfs_auto_format
USEMODULE += shell
USEMODULE += ps
USEMODULE += shell_commands
include $(RIOTBASE)/Makefile.include
ifneq (,$(filter avr8_common,$(USEMODULE)))
# the main thread stack on AVR is too small for the vfs shell command
CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_LARGE
endif