Kconfig 944 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. config FAT_FILESYSTEM_ELM
  2. bool "ELM FAT File System"
  3. #depends on FILE_SYSTEM_FAT
  4. select FAT_FILESYSTEM_ELM_UTF8
  5. default y
  6. help
  7. Use the ELM FAT File system implementation.
  8. config LONG_FILE_NAME
  9. bool "LONG FILE NAME System"
  10. depends on FAT_FILESYSTEM_ELM
  11. default y
  12. help
  13. Use the long file name implementation.
  14. config CODE_TABLE_IN_SDFS
  15. bool "code table in sdfs System"
  16. depends on FAT_FILESYSTEM_ELM
  17. default n
  18. help
  19. Use the code table in sdfs.
  20. config FAT_FILESYSTEM_ELM_UTF8
  21. bool "UTF8 for ELM FAT File System"
  22. depends on FAT_FILESYSTEM_ELM
  23. select NLS
  24. select NLS_UTF8
  25. default n
  26. help
  27. Use the UTF-8 for ELM FAT File system implementation.
  28. config DISKIO_CACHE
  29. bool "disk io cache"
  30. depends on FAT_FILESYSTEM_ELM
  31. default n
  32. help
  33. enable disk io cache.
  34. config DISKIO_CACHE_TIMEOUT
  35. int
  36. prompt"disk io cache timeout"
  37. depends on DISKIO_CACHE
  38. default 3000
  39. help
  40. This option set diskio cache timeout.
  41. rsource "nls/Kconfig"