summaryrefslogtreecommitdiffstats
path: root/fs/fat/Kconfig
blob: 53f784ee54d58de732ad8f23bec4c7736f16e283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# SPDX-License-Identifier: GPL-2.0-only

menuconfig FS_FAT
	bool
	select FS_LEGACY
	prompt "FAT filesystem support"

if FS_FAT

config FS_FAT_WRITE
	bool
	prompt "FAT write support"
	help
	  Enable support for writing in FAT partitions.
	  Note: This doesn't apply to FAT usage in barebox PBL.


config FS_FAT_LFN
	def_bool y
	prompt "Support long filenames"
	help
	  Enable support for file names other than 8.3.
	  Note: This doesn't apply to FAT usage in barebox PBL.

endif