2023-05-10 10:36:12 +02:00
|
|
|
include ../Makefile.sys_common
|
2022-02-14 14:31:01 +01:00
|
|
|
|
|
|
|
USEMODULE += vfs_default
|
|
|
|
USEMODULE += vfs_auto_format
|
|
|
|
|
2022-09-09 17:06:27 +02:00
|
|
|
USEMODULE += ps
|
2023-03-17 00:17:11 +01:00
|
|
|
USEMODULE += shell_cmd_genfile
|
2022-08-16 16:35:20 +02:00
|
|
|
USEMODULE += shell_cmds_default
|
2022-02-14 14:31:01 +01:00
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
2022-09-09 17:06:27 +02:00
|
|
|
|
|
|
|
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
|