Kconfig 874 B

123456789101112131415161718192021222324
  1. config FS_FAT
  2. bool "Enable FAT filesystem support"
  3. help
  4. This provides support for reading images from File Allocation Table
  5. (FAT) filesystem. FAT filesystem is a legacy, lightweight filesystem.
  6. It is useful mainly for its wide compatibility with various operating
  7. systems. You can also enable CMD_FAT to get access to fat commands.
  8. config FAT_WRITE
  9. bool "Enable FAT filesystem write support"
  10. depends on FS_FAT
  11. help
  12. This provides support for creating and writing new files to an
  13. existing FAT filesystem partition.
  14. config FS_FAT_MAX_CLUSTSIZE
  15. int "Set maximum possible clustersize"
  16. default 65536
  17. depends on FS_FAT
  18. help
  19. Set the maximum possible clustersize for the FAT filesytem. This
  20. is the smallest amount of disk space that can be used to hold a
  21. file. Unless you have an extremely tight memory memory constraints,
  22. leave the default.