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