2018-05-29 09:01:25 +00:00
|
|
|
menu "Virtual file system"
|
|
|
|
|
2019-07-02 15:14:58 +00:00
|
|
|
config VFS_SUPPRESS_SELECT_DEBUG_OUTPUT
|
2019-01-25 16:10:53 +00:00
|
|
|
bool "Suppress select() related debug outputs"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Select() related functions might produce an unconveniently lot of
|
|
|
|
debug outputs when one sets the default log level to DEBUG or higher.
|
|
|
|
It is possible to suppress these debug outputs by enabling this
|
|
|
|
option.
|
2018-05-29 09:01:25 +00:00
|
|
|
|
2019-07-02 15:14:58 +00:00
|
|
|
config VFS_SUPPORT_TERMIOS
|
2019-01-25 16:10:53 +00:00
|
|
|
bool "Add support for termios.h"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Disabling this option can save memory when the support for termios.h is not required.
|
2018-08-14 11:39:30 +00:00
|
|
|
|
2019-02-19 19:50:18 +00:00
|
|
|
menu "Host File System I/O (Semihosting)"
|
|
|
|
config SEMIHOSTFS_MAX_MOUNT_POINTS
|
|
|
|
int "Maximum number of the host filesystem mount points"
|
|
|
|
default 1
|
|
|
|
help
|
|
|
|
Define maximum number of host filesystem mount points.
|
|
|
|
|
|
|
|
config SEMIHOSTFS_HOST_PATH_MAX_LEN
|
|
|
|
int "Maximum path length for the host base directory"
|
|
|
|
default 128
|
|
|
|
help
|
|
|
|
Define maximum path length for the host base directory which is to be mounted.
|
|
|
|
If host path passed to esp_vfs_semihost_register() is longer than this value
|
|
|
|
it will be truncated.
|
|
|
|
endmenu
|
|
|
|
|
2018-05-29 09:01:25 +00:00
|
|
|
endmenu
|