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