Kconfig.fatfs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. # Copyright (c) 2016 Intel Corporation
  2. # Copyright (c) 2020 Nordic Semiconductor ASA
  3. # SPDX-License-Identifier: Apache-2.0
  4. config FAT_FILESYSTEM_ELM
  5. bool "ELM FAT file system support"
  6. depends on FILE_SYSTEM
  7. select DISK_ACCESS
  8. help
  9. Use the ELM FAT File system implementation.
  10. if FAT_FILESYSTEM_ELM
  11. menu "ELM FAT file system settings"
  12. visible if FAT_FILESYSTEM_ELM
  13. config FS_FATFS_READ_ONLY
  14. bool "Read-only support for all volumes"
  15. help
  16. The option excludes write code from ELM FAT file system driver;
  17. when selected, it no longer will be possible to write data on
  18. the FAT FS.
  19. If write support is not needed, enabling this flag will slightly
  20. reduce application size.
  21. This option translates to _FS_READONLY within ELM FAT file system
  22. driver; it enables exclusion, from compilation, of write supporting
  23. code.
  24. config FS_FATFS_MKFS
  25. bool
  26. help
  27. This option translates to _USE_MKFS within ELM FAT file system
  28. driver; it enables additional code that is required for formatting
  29. volumes to ELM FAT.
  30. config FS_FATFS_MOUNT_MKFS
  31. bool "Allow formatting volume when mounting fails"
  32. default y
  33. select FS_FATFS_MKFS
  34. help
  35. This option adds code that allows fs_mount to attempt to format
  36. a volume if no file system is found.
  37. If formatting is not needed, disabling this flag will slightly
  38. reduce application size.
  39. config FS_FATFS_EXFAT
  40. bool "Enable exFAT support"
  41. select FS_FATFS_LFN
  42. help
  43. Enable the exFAT format support for FatFs.
  44. config FS_FATFS_NUM_FILES
  45. int "Maximum number of opened files"
  46. default 4
  47. config FS_FATFS_NUM_DIRS
  48. int "Maximum number of opened directories"
  49. default 4
  50. config FS_FATFS_LFN
  51. bool "Enable long filenames (LFN)"
  52. help
  53. Without long filenames enabled, file names are limited to 8.3 format.
  54. This option increases working buffer size.
  55. if FS_FATFS_LFN
  56. choice
  57. prompt "LFN memory mode"
  58. default FS_FATFS_LFN_MODE_BSS
  59. config FS_FATFS_LFN_MODE_BSS
  60. bool "Static buffer"
  61. help
  62. Enable LFN with static working buffer on the BSS. Always NOT thread-safe.
  63. config FS_FATFS_LFN_MODE_STACK
  64. bool "Stack buffer"
  65. help
  66. Enable LFN with dynamic working buffer on the STACK.
  67. config FS_FATFS_LFN_MODE_HEAP
  68. bool "Heap buffer"
  69. help
  70. Enable LFN with dynamic working buffer on the HEAP.
  71. endchoice
  72. config FS_FATFS_MAX_LFN
  73. int "Max filename length"
  74. range 12 255
  75. default 255
  76. help
  77. The working buffer occupies (FS_FATFS_MAX_LFN + 1) * 2 bytes and
  78. additional 608 bytes at exFAT enabled.
  79. It should be set 255 to support full featured LFN operations.
  80. endif # FS_FATFS_LFN
  81. config FS_FATFS_CODEPAGE
  82. int "FatFS code page (character set)"
  83. default 437
  84. help
  85. Valid code page values:
  86. 437 - U.S.
  87. 720 - Arabic
  88. 737 - Greek
  89. 771 - KBL
  90. 775 - Baltic
  91. 850 - Latin 1
  92. 852 - Latin 2
  93. 855 - Cyrillic
  94. 857 - Turkish
  95. 860 - Portuguese
  96. 861 - Icelandic
  97. 862 - Hebrew
  98. 863 - Canadian French
  99. 864 - Arabic
  100. 865 - Nordic
  101. 866 - Russian
  102. 869 - Greek 2
  103. 932 - Japanese (DBCS)
  104. 936 - Simplified Chinese (DBCS)
  105. 949 - Korean (DBCS)
  106. 950 - Traditional Chinese (DBCS)
  107. config FS_FATFS_MAX_SS
  108. int "Maximum supported sector size"
  109. range 512 4096
  110. default 512
  111. endmenu
  112. endif # FAT_FILESYSTEM_ELM