Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # Copyright (c) 2016 Intel Corporation
  2. # Copyright (c) 2020 Nordic Semiconductor (ASA)
  3. # SPDX-License-Identifier: Apache-2.0
  4. menu "File Systems"
  5. config FILE_SYSTEM
  6. bool "File system support"
  7. help
  8. Enables support for file system.
  9. if FILE_SYSTEM
  10. module = FS
  11. module-str = fs
  12. source "subsys/logging/Kconfig.template.log_config"
  13. config APP_LINK_WITH_FS
  14. bool "Link 'app' with FS"
  15. default y
  16. help
  17. Add FS header files to the 'app' include path. It may be
  18. disabled if the include paths for FS are causing aliasing
  19. issues for 'app'.
  20. config FILE_SYSTEM_MAX_TYPES
  21. int "Maximum number of distinct file system types allowed"
  22. default 2
  23. help
  24. Zephyr provides several file system types including FatFS and
  25. LittleFS, but it is possible to define additional ones and
  26. register them. A slot is required for each type.
  27. config FILE_SYSTEM_MAX_FILE_NAME
  28. int "Optional override for maximum file name length"
  29. default -1
  30. help
  31. Specify the maximum file name allowed across all enabled file
  32. system types. Zero or a negative value selects the maximum
  33. file name length for enabled in-tree file systems. This
  34. default may be inappropriate when registering an out-of-tree
  35. file system. Selecting a value less than the actual length
  36. supported by a file system may result in memory access
  37. violations.
  38. config FILE_SYSTEM_SHELL
  39. bool "Enable file system shell"
  40. depends on SHELL
  41. depends on HEAP_MEM_POOL_SIZE > 0
  42. help
  43. This shell provides basic browsing of the contents of the
  44. file system.
  45. config FUSE_FS_ACCESS
  46. bool "Enable FUSE based access to file system partitions"
  47. depends on ARCH_POSIX
  48. help
  49. Expose file system partitions to the host system through FUSE.
  50. source "subsys/fs/Kconfig.fatfs"
  51. source "subsys/fs/Kconfig.littlefs"
  52. endif # FILE_SYSTEM
  53. source "subsys/fs/fcb/Kconfig"
  54. source "subsys/fs/nvs/Kconfig"
  55. endmenu