fs: sdfat: Update to version 2.4.5
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / fs / Kconfig
CommitLineData
1da177e4
LT
1#
2# File system configuration
3#
4
5menu "File systems"
6
bfcfaa77
LT
7# Use unaligned word dcache accesses
8config DCACHE_WORD_ACCESS
9 bool
10
3c2a0909
S
11config INTERRUPTIBLE_SYNC
12 bool "Support interruptible sync for Samsung Mobile Device"
13 default y
14
9361401e
DH
15if BLOCK
16
6da0b38f
AD
17source "fs/ext2/Kconfig"
18source "fs/ext3/Kconfig"
19source "fs/ext4/Kconfig"
3c2a0909 20source "fs/sdcardfs/Kconfig"
6d79125b
CO
21
22config FS_XIP
23# execute in place
24 bool
25 depends on EXT2_FS_XIP
26 default y
27
6da0b38f
AD
28source "fs/jbd/Kconfig"
29source "fs/jbd2/Kconfig"
dab291af 30
1da177e4 31config FS_MBCACHE
02ea2104 32# Meta block cache for Extended Attributes (ext2/ext3/ext4)
1da177e4 33 tristate
2c512397
AB
34 default y if EXT2_FS=y && EXT2_FS_XATTR
35 default y if EXT3_FS=y && EXT3_FS_XATTR
939da108
TM
36 default y if EXT4_FS=y
37 default m if EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS
1da177e4 38
b16ecfe2 39source "fs/reiserfs/Kconfig"
f5c77969 40source "fs/jfs/Kconfig"
1da177e4 41
69050eee
TS
42source "fs/xfs/Kconfig"
43source "fs/gfs2/Kconfig"
44source "fs/ocfs2/Kconfig"
45source "fs/btrfs/Kconfig"
41f4db0f 46source "fs/nilfs2/Kconfig"
69050eee
TS
47
48endif # BLOCK
49
16ebe911
RD
50# Posix ACL utility routines
51#
52# Note: Posix ACLs can be implemented without these helpers. Never use
53# this symbol for ifdefs in core code.
54#
55config FS_POSIX_ACL
56 def_bool n
57
4199ca77 58config EXPORTFS
79fead47 59 tristate
4199ca77 60
bfcd17a6 61config FILE_LOCKING
6a108a14 62 bool "Enable POSIX file locking API" if EXPERT
bfcd17a6
TP
63 default y
64 help
65 This option enables standard file locking support, required
66 for filesystems like NFS and for the flock() system
67 call. Disabling this option saves about 11k.
68
ebadec83 69source "fs/crypto/Kconfig"
70
272eb014 71source "fs/notify/Kconfig"
0eeca283 72
884d179d 73source "fs/quota/Kconfig"
1da177e4 74
90ffd467 75source "fs/autofs4/Kconfig"
3ef7784e 76source "fs/fuse/Kconfig"
04578f17 77
f2fbc6c2
RD
78config GENERIC_ACL
79 bool
80 select FS_POSIX_ACL
81
06b3db1b
DH
82menu "Caches"
83
84source "fs/fscache/Kconfig"
9ae326a6 85source "fs/cachefiles/Kconfig"
06b3db1b
DH
86
87endmenu
88
9361401e 89if BLOCK
1da177e4
LT
90menu "CD-ROM/DVD Filesystems"
91
ddfaccd9
AD
92source "fs/isofs/Kconfig"
93source "fs/udf/Kconfig"
1da177e4
LT
94
95endmenu
25fad945 96endif # BLOCK
1da177e4 97
9361401e 98if BLOCK
1da177e4
LT
99menu "DOS/FAT/NT Filesystems"
100
1c6ace01 101source "fs/fat/Kconfig"
3c2a0909 102source "fs/exfat/Kconfig"
9d73ac9e 103source "fs/ntfs/Kconfig"
45e430a1 104source "fs/sdfat/Kconfig"
1da177e4
LT
105
106endmenu
25fad945 107endif # BLOCK
1da177e4
LT
108
109menu "Pseudo filesystems"
110
6eedf8d3 111source "fs/proc/Kconfig"
5f3a211a 112source "fs/sysfs/Kconfig"
1da177e4 113
1da177e4 114config TMPFS
f5fc870d 115 bool "Tmpfs virtual memory file system support (former shm fs)"
3f96b79a 116 depends on SHMEM
1da177e4
LT
117 help
118 Tmpfs is a file system which keeps all files in virtual memory.
119
120 Everything in tmpfs is temporary in the sense that no files will be
121 created on your hard drive. The files live in memory and swap
122 space. If you unmount a tmpfs instance, everything stored therein is
123 lost.
124
125 See <file:Documentation/filesystems/tmpfs.txt> for details.
126
4db70f73
EP
127config TMPFS_POSIX_ACL
128 bool "Tmpfs POSIX Access Control Lists"
129 depends on TMPFS
130 select TMPFS_XATTR
131 select GENERIC_ACL
132 help
206506cc
RD
133 POSIX Access Control Lists (ACLs) support additional access rights
134 for users and groups beyond the standard owner/group/world scheme,
135 and this option selects support for ACLs specifically for tmpfs
136 filesystems.
137
138 If you've selected TMPFS, it's possible that you'll also need
139 this option as there are a number of Linux distros that require
140 POSIX ACL support under /dev for certain features to work properly.
141 For example, some distros need this feature for ALSA-related /dev
142 files for sound to work properly. In short, if you're not sure,
143 say Y.
4db70f73
EP
144
145 To learn more about Access Control Lists, visit the POSIX ACLs for
146 Linux website <http://acl.bestbits.at/>.
147
b09e0fa4
EP
148config TMPFS_XATTR
149 bool "Tmpfs extended attributes"
150 depends on TMPFS
151 default n
152 help
153 Extended attributes are name:value pairs associated with inodes by
154 the kernel or by users (see the attr(5) manual page, or visit
155 <http://acl.bestbits.at/> for details).
156
157 Currently this enables support for the trusted.* and
158 security.* namespaces.
159
b09e0fa4
EP
160 You need this for POSIX ACL support on tmpfs.
161
4db70f73 162 If unsure, say N.
39f0247d 163
1da177e4
LT
164config HUGETLBFS
165 bool "HugeTLB file system support"
5a1eb5c4 166 depends on X86 || IA64 || SPARC64 || (S390 && 64BIT) || \
ffb4a73d 167 SYS_SUPPORTS_HUGETLBFS || BROKEN
dda27d1a
AO
168 help
169 hugetlbfs is a filesystem backing for HugeTLB pages, based on
170 ramfs. For architectures that support it, say Y here and read
171 <file:Documentation/vm/hugetlbpage.txt> for details.
172
173 If unsure, say N.
1da177e4
LT
174
175config HUGETLB_PAGE
176 def_bool HUGETLBFS
177
4591dabe 178source "fs/configfs/Kconfig"
7063fbf2 179
1da177e4
LT
180endmenu
181
67ec7d3a
RD
182menuconfig MISC_FILESYSTEMS
183 bool "Miscellaneous filesystems"
184 default y
185 ---help---
186 Say Y here to get to see options for various miscellaneous
187 filesystems, such as filesystems that came from other
188 operating systems.
189
190 This option alone does not add any kernel code.
191
192 If you say N, all options in this submenu will be skipped and
193 disabled; if unsure, say Y here.
194
195if MISC_FILESYSTEMS
1da177e4 196
bc2de2ae 197source "fs/adfs/Kconfig"
10951bf0 198source "fs/affs/Kconfig"
295c896c 199source "fs/ecryptfs/Kconfig"
b08bac1f
AD
200source "fs/hfs/Kconfig"
201source "fs/hfsplus/Kconfig"
0b09eb32 202source "fs/befs/Kconfig"
0ff42384 203source "fs/bfs/Kconfig"
571f0a0b 204source "fs/efs/Kconfig"
31db6e9e 205source "fs/jffs2/Kconfig"
0d7eff87
AB
206# UBIFS File system configuration
207source "fs/ubifs/Kconfig"
5db53f3e 208source "fs/logfs/Kconfig"
2a22783b 209source "fs/cramfs/Kconfig"
22635ec9 210source "fs/squashfs/Kconfig"
22135169 211source "fs/freevxfs/Kconfig"
8b1cd7d3 212source "fs/minix/Kconfig"
da55e6f9 213source "fs/omfs/Kconfig"
928ea192 214source "fs/hpfs/Kconfig"
4c741583 215source "fs/qnx4/Kconfig"
5d026c72 216source "fs/qnx6/Kconfig"
41810246 217source "fs/romfs/Kconfig"
ca01d6dd 218source "fs/pstore/Kconfig"
8af915ba 219source "fs/sysv/Kconfig"
a276a52f 220source "fs/ufs/Kconfig"
0d8fe329 221source "fs/exofs/Kconfig"
a14d5393 222source "fs/f2fs/Kconfig"
d68772b7 223source "fs/efivarfs/Kconfig"
0c4fb877 224
67ec7d3a 225endif # MISC_FILESYSTEMS
1da177e4 226
831c2dc5
BH
227source "fs/exofs/Kconfig.ore"
228
ea0985ad
JE
229menuconfig NETWORK_FILESYSTEMS
230 bool "Network File Systems"
231 default y
1da177e4 232 depends on NET
ea0985ad
JE
233 ---help---
234 Say Y here to get to see options for network filesystems and
235 filesystem-related networking code, such as NFS daemon and
236 RPCSEC security modules.
6fb1bc10 237
ea0985ad
JE
238 This option alone does not add any kernel code.
239
240 If you say N, all options in this submenu will be skipped and
241 disabled; if unsure, say Y here.
242
243if NETWORK_FILESYSTEMS
1da177e4 244
97afe47a 245source "fs/nfs/Kconfig"
e2b329e2 246source "fs/nfsd/Kconfig"
1da177e4 247
1da177e4
LT
248config LOCKD
249 tristate
dd4dc82d 250 depends on FILE_LOCKING
1da177e4
LT
251
252config LOCKD_V4
253 bool
254 depends on NFSD_V3 || NFS_V3
dd4dc82d 255 depends on FILE_LOCKING
1da177e4
LT
256 default y
257
a257cdd0
AG
258config NFS_ACL_SUPPORT
259 tristate
260 select FS_POSIX_ACL
261
262config NFS_COMMON
263 bool
264 depends on NFSD || NFS_FS
265 default y
266
9098c24f 267source "net/sunrpc/Kconfig"
9030aaf9 268source "fs/ceph/Kconfig"
bb26b963 269source "fs/cifs/Kconfig"
1da177e4 270source "fs/ncpfs/Kconfig"
33a1a6fe 271source "fs/coda/Kconfig"
b2480c7f 272source "fs/afs/Kconfig"
0fcb4408 273source "fs/9p/Kconfig"
93fa58cb 274
ea0985ad 275endif # NETWORK_FILESYSTEMS
1da177e4 276
1da177e4 277source "fs/nls/Kconfig"
e7fd4179 278source "fs/dlm/Kconfig"
1da177e4
LT
279
280endmenu