1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

tests/vfs_default: increase stack size for AVR

This avoids an stack overflow when using `vfs ls`.
This commit is contained in:
Marian Buschsieweke 2022-09-09 17:06:27 +02:00
parent b15af47f34
commit 0991702707
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -4,6 +4,12 @@ USEMODULE += vfs_default
USEMODULE += vfs_auto_format USEMODULE += vfs_auto_format
USEMODULE += shell USEMODULE += shell
USEMODULE += ps
USEMODULE += shell_commands USEMODULE += shell_commands
include $(RIOTBASE)/Makefile.include 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