Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. menu "Virtual file system"
  2. config VFS_SUPPRESS_SELECT_DEBUG_OUTPUT
  3. bool "Suppress select() related debug outputs"
  4. default y
  5. help
  6. Select() related functions might produce an unconveniently lot of
  7. debug outputs when one sets the default log level to DEBUG or higher.
  8. It is possible to suppress these debug outputs by enabling this
  9. option.
  10. config VFS_SUPPORT_TERMIOS
  11. bool "Add support for termios.h"
  12. default y
  13. help
  14. Disabling this option can save memory when the support for termios.h is not required.
  15. menu "Host File System I/O (Semihosting)"
  16. config SEMIHOSTFS_MAX_MOUNT_POINTS
  17. int "Maximum number of the host filesystem mount points"
  18. default 1
  19. help
  20. Define maximum number of host filesystem mount points.
  21. config SEMIHOSTFS_HOST_PATH_MAX_LEN
  22. int "Maximum path length for the host base directory"
  23. default 128
  24. help
  25. Define maximum path length for the host base directory which is to be mounted.
  26. If host path passed to esp_vfs_semihost_register() is longer than this value
  27. it will be truncated.
  28. endmenu
  29. endmenu