2005-04-16 15:20:36 -07:00
|
|
|
#
|
|
|
|
|
# File system configuration
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
menu "File systems"
|
|
|
|
|
|
2012-03-06 11:16:17 -08:00
|
|
|
# Use unaligned word dcache accesses
|
|
|
|
|
config DCACHE_WORD_ACCESS
|
|
|
|
|
bool
|
|
|
|
|
|
2006-09-30 20:45:40 +02:00
|
|
|
if BLOCK
|
|
|
|
|
|
2008-10-20 22:28:45 +04:00
|
|
|
source "fs/ext2/Kconfig"
|
|
|
|
|
source "fs/ext4/Kconfig"
|
|
|
|
|
source "fs/jbd2/Kconfig"
|
2006-10-11 01:21:01 -07:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
config FS_MBCACHE
|
2006-10-11 01:20:56 -07:00
|
|
|
# Meta block cache for Extended Attributes (ext2/ext3/ext4)
|
2005-04-16 15:20:36 -07:00
|
|
|
tristate
|
2008-08-20 16:56:22 -07:00
|
|
|
default y if EXT2_FS=y && EXT2_FS_XATTR
|
2012-12-10 16:30:43 -05:00
|
|
|
default y if EXT4_FS=y
|
2015-06-18 16:52:29 +02:00
|
|
|
default m if EXT2_FS_XATTR || EXT4_FS
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-01-22 10:22:31 +03:00
|
|
|
source "fs/reiserfs/Kconfig"
|
2009-01-22 10:24:27 +03:00
|
|
|
source "fs/jfs/Kconfig"
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-06-16 15:33:56 -07:00
|
|
|
source "fs/xfs/Kconfig"
|
|
|
|
|
source "fs/gfs2/Kconfig"
|
|
|
|
|
source "fs/ocfs2/Kconfig"
|
|
|
|
|
source "fs/btrfs/Kconfig"
|
2009-08-08 16:09:46 +09:00
|
|
|
source "fs/nilfs2/Kconfig"
|
2015-03-03 17:06:55 -08:00
|
|
|
source "fs/f2fs/Kconfig"
|
2009-06-16 15:33:56 -07:00
|
|
|
|
2015-02-16 15:59:25 -08:00
|
|
|
config FS_DAX
|
|
|
|
|
bool "Direct Access (DAX) support"
|
|
|
|
|
depends on MMU
|
2015-02-16 15:59:44 -08:00
|
|
|
depends on !(ARM || MIPS || SPARC)
|
2015-02-16 15:59:25 -08:00
|
|
|
help
|
|
|
|
|
Direct Access (DAX) can be used on memory-backed block devices.
|
|
|
|
|
If the block device supports DAX and the filesystem supports DAX,
|
|
|
|
|
then you can avoid using the pagecache to buffer I/Os. Turning
|
|
|
|
|
on this option will compile in support for DAX; you will need to
|
|
|
|
|
mount the filesystem using the -o dax option.
|
|
|
|
|
|
|
|
|
|
If you do not have a block device that is capable of using this,
|
|
|
|
|
or if unsure, say N. Saying Y will increase the size of the kernel
|
|
|
|
|
by about 5kB.
|
|
|
|
|
|
2009-06-16 15:33:56 -07:00
|
|
|
endif # BLOCK
|
|
|
|
|
|
2011-01-02 14:44:00 -08:00
|
|
|
# Posix ACL utility routines
|
|
|
|
|
#
|
|
|
|
|
# Note: Posix ACLs can be implemented without these helpers. Never use
|
|
|
|
|
# this symbol for ifdefs in core code.
|
|
|
|
|
#
|
|
|
|
|
config FS_POSIX_ACL
|
|
|
|
|
def_bool n
|
|
|
|
|
|
2010-10-26 14:22:32 -07:00
|
|
|
config EXPORTFS
|
2011-05-24 20:12:08 +02:00
|
|
|
tristate
|
2010-10-26 14:22:32 -07:00
|
|
|
|
2008-08-06 15:12:22 +02:00
|
|
|
config FILE_LOCKING
|
2011-01-20 14:44:16 -08:00
|
|
|
bool "Enable POSIX file locking API" if EXPERT
|
2008-08-06 15:12:22 +02:00
|
|
|
default y
|
|
|
|
|
help
|
|
|
|
|
This option enables standard file locking support, required
|
|
|
|
|
for filesystems like NFS and for the flock() system
|
|
|
|
|
call. Disabling this option saves about 11k.
|
|
|
|
|
|
2008-12-17 13:59:41 -05:00
|
|
|
source "fs/notify/Kconfig"
|
2005-07-12 17:06:03 -04:00
|
|
|
|
2009-01-26 15:28:09 +01:00
|
|
|
source "fs/quota/Kconfig"
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-01-22 10:31:56 +03:00
|
|
|
source "fs/autofs4/Kconfig"
|
2009-01-22 10:33:25 +03:00
|
|
|
source "fs/fuse/Kconfig"
|
2014-10-24 00:14:38 +02:00
|
|
|
source "fs/overlayfs/Kconfig"
|
2005-09-09 13:10:22 -07:00
|
|
|
|
2009-04-03 16:42:36 +01:00
|
|
|
menu "Caches"
|
|
|
|
|
|
|
|
|
|
source "fs/fscache/Kconfig"
|
2009-04-03 16:42:41 +01:00
|
|
|
source "fs/cachefiles/Kconfig"
|
2009-04-03 16:42:36 +01:00
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
|
2006-09-30 20:45:40 +02:00
|
|
|
if BLOCK
|
2005-04-16 15:20:36 -07:00
|
|
|
menu "CD-ROM/DVD Filesystems"
|
|
|
|
|
|
2009-01-22 10:35:21 +03:00
|
|
|
source "fs/isofs/Kconfig"
|
|
|
|
|
source "fs/udf/Kconfig"
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
endmenu
|
2008-02-07 00:15:16 -08:00
|
|
|
endif # BLOCK
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2006-09-30 20:45:40 +02:00
|
|
|
if BLOCK
|
2005-04-16 15:20:36 -07:00
|
|
|
menu "DOS/FAT/NT Filesystems"
|
|
|
|
|
|
2009-01-22 10:37:59 +03:00
|
|
|
source "fs/fat/Kconfig"
|
2009-01-22 10:39:20 +03:00
|
|
|
source "fs/ntfs/Kconfig"
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
endmenu
|
2008-02-07 00:15:16 -08:00
|
|
|
endif # BLOCK
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
menu "Pseudo filesystems"
|
|
|
|
|
|
2008-07-25 01:48:30 -07:00
|
|
|
source "fs/proc/Kconfig"
|
2014-02-03 14:09:17 -05:00
|
|
|
source "fs/kernfs/Kconfig"
|
2009-01-22 10:40:58 +03:00
|
|
|
source "fs/sysfs/Kconfig"
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
config TMPFS
|
2011-10-31 17:07:21 -07:00
|
|
|
bool "Tmpfs virtual memory file system support (former shm fs)"
|
2009-09-21 17:03:37 -07:00
|
|
|
depends on SHMEM
|
2005-04-16 15:20:36 -07:00
|
|
|
help
|
|
|
|
|
Tmpfs is a file system which keeps all files in virtual memory.
|
|
|
|
|
|
|
|
|
|
Everything in tmpfs is temporary in the sense that no files will be
|
|
|
|
|
created on your hard drive. The files live in memory and swap
|
|
|
|
|
space. If you unmount a tmpfs instance, everything stored therein is
|
|
|
|
|
lost.
|
|
|
|
|
|
|
|
|
|
See <file:Documentation/filesystems/tmpfs.txt> for details.
|
|
|
|
|
|
2011-05-25 19:49:18 -07:00
|
|
|
config TMPFS_POSIX_ACL
|
|
|
|
|
bool "Tmpfs POSIX Access Control Lists"
|
|
|
|
|
depends on TMPFS
|
|
|
|
|
select TMPFS_XATTR
|
2013-12-20 05:16:54 -08:00
|
|
|
select FS_POSIX_ACL
|
2011-05-25 19:49:18 -07:00
|
|
|
help
|
2011-08-03 16:21:29 -07:00
|
|
|
POSIX Access Control Lists (ACLs) support additional access rights
|
|
|
|
|
for users and groups beyond the standard owner/group/world scheme,
|
|
|
|
|
and this option selects support for ACLs specifically for tmpfs
|
|
|
|
|
filesystems.
|
|
|
|
|
|
|
|
|
|
If you've selected TMPFS, it's possible that you'll also need
|
|
|
|
|
this option as there are a number of Linux distros that require
|
|
|
|
|
POSIX ACL support under /dev for certain features to work properly.
|
|
|
|
|
For example, some distros need this feature for ALSA-related /dev
|
|
|
|
|
files for sound to work properly. In short, if you're not sure,
|
|
|
|
|
say Y.
|
2011-05-25 19:49:18 -07:00
|
|
|
|
|
|
|
|
To learn more about Access Control Lists, visit the POSIX ACLs for
|
|
|
|
|
Linux website <http://acl.bestbits.at/>.
|
|
|
|
|
|
2011-05-24 17:12:39 -07:00
|
|
|
config TMPFS_XATTR
|
|
|
|
|
bool "Tmpfs extended attributes"
|
|
|
|
|
depends on TMPFS
|
|
|
|
|
default n
|
|
|
|
|
help
|
|
|
|
|
Extended attributes are name:value pairs associated with inodes by
|
|
|
|
|
the kernel or by users (see the attr(5) manual page, or visit
|
|
|
|
|
<http://acl.bestbits.at/> for details).
|
|
|
|
|
|
|
|
|
|
Currently this enables support for the trusted.* and
|
|
|
|
|
security.* namespaces.
|
|
|
|
|
|
|
|
|
|
You need this for POSIX ACL support on tmpfs.
|
|
|
|
|
|
2011-05-25 19:49:18 -07:00
|
|
|
If unsure, say N.
|
2006-09-29 02:01:35 -07:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
config HUGETLBFS
|
|
|
|
|
bool "HugeTLB file system support"
|
2009-10-30 15:03:54 +11:00
|
|
|
depends on X86 || IA64 || SPARC64 || (S390 && 64BIT) || \
|
2009-10-27 07:22:37 +09:00
|
|
|
SYS_SUPPORTS_HUGETLBFS || BROKEN
|
2006-04-18 22:20:57 -07:00
|
|
|
help
|
|
|
|
|
hugetlbfs is a filesystem backing for HugeTLB pages, based on
|
|
|
|
|
ramfs. For architectures that support it, say Y here and read
|
|
|
|
|
<file:Documentation/vm/hugetlbpage.txt> for details.
|
|
|
|
|
|
|
|
|
|
If unsure, say N.
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
config HUGETLB_PAGE
|
|
|
|
|
def_bool HUGETLBFS
|
|
|
|
|
|
2009-01-22 10:42:52 +03:00
|
|
|
source "fs/configfs/Kconfig"
|
2014-12-18 17:50:49 +00:00
|
|
|
source "fs/efivarfs/Kconfig"
|
2005-12-15 14:29:43 -08:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
endmenu
|
|
|
|
|
|
2009-01-06 14:40:57 -08:00
|
|
|
menuconfig MISC_FILESYSTEMS
|
|
|
|
|
bool "Miscellaneous filesystems"
|
|
|
|
|
default y
|
|
|
|
|
---help---
|
|
|
|
|
Say Y here to get to see options for various miscellaneous
|
|
|
|
|
filesystems, such as filesystems that came from other
|
|
|
|
|
operating systems.
|
|
|
|
|
|
|
|
|
|
This option alone does not add any kernel code.
|
|
|
|
|
|
|
|
|
|
If you say N, all options in this submenu will be skipped and
|
|
|
|
|
disabled; if unsure, say Y here.
|
|
|
|
|
|
|
|
|
|
if MISC_FILESYSTEMS
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-01-22 10:48:46 +03:00
|
|
|
source "fs/adfs/Kconfig"
|
2009-01-22 10:49:44 +03:00
|
|
|
source "fs/affs/Kconfig"
|
2009-01-22 10:50:50 +03:00
|
|
|
source "fs/ecryptfs/Kconfig"
|
2009-01-22 10:53:24 +03:00
|
|
|
source "fs/hfs/Kconfig"
|
|
|
|
|
source "fs/hfsplus/Kconfig"
|
2009-01-22 10:54:16 +03:00
|
|
|
source "fs/befs/Kconfig"
|
2009-01-22 10:55:13 +03:00
|
|
|
source "fs/bfs/Kconfig"
|
2009-01-22 10:56:07 +03:00
|
|
|
source "fs/efs/Kconfig"
|
2008-08-29 07:19:50 +04:00
|
|
|
source "fs/jffs2/Kconfig"
|
2008-07-14 19:08:38 +03:00
|
|
|
# UBIFS File system configuration
|
|
|
|
|
source "fs/ubifs/Kconfig"
|
2009-11-20 20:13:39 +01:00
|
|
|
source "fs/logfs/Kconfig"
|
2009-01-22 10:56:54 +03:00
|
|
|
source "fs/cramfs/Kconfig"
|
2009-01-22 10:57:46 +03:00
|
|
|
source "fs/squashfs/Kconfig"
|
2009-01-22 10:58:51 +03:00
|
|
|
source "fs/freevxfs/Kconfig"
|
2009-01-22 10:59:49 +03:00
|
|
|
source "fs/minix/Kconfig"
|
2009-01-22 11:00:41 +03:00
|
|
|
source "fs/omfs/Kconfig"
|
2009-01-22 11:01:26 +03:00
|
|
|
source "fs/hpfs/Kconfig"
|
2009-01-22 11:02:21 +03:00
|
|
|
source "fs/qnx4/Kconfig"
|
2012-02-17 05:59:20 +01:00
|
|
|
source "fs/qnx6/Kconfig"
|
2009-01-22 11:03:34 +03:00
|
|
|
source "fs/romfs/Kconfig"
|
2010-12-28 14:25:21 -08:00
|
|
|
source "fs/pstore/Kconfig"
|
2009-01-22 11:04:23 +03:00
|
|
|
source "fs/sysv/Kconfig"
|
2009-01-22 11:05:02 +03:00
|
|
|
source "fs/ufs/Kconfig"
|
2008-12-15 12:53:08 +02:00
|
|
|
source "fs/exofs/Kconfig"
|
2009-04-06 19:01:41 -07:00
|
|
|
|
2009-01-06 14:40:57 -08:00
|
|
|
endif # MISC_FILESYSTEMS
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2011-11-29 15:35:53 -08:00
|
|
|
source "fs/exofs/Kconfig.ore"
|
|
|
|
|
|
2007-10-16 23:30:16 -07:00
|
|
|
menuconfig NETWORK_FILESYSTEMS
|
|
|
|
|
bool "Network File Systems"
|
|
|
|
|
default y
|
2005-04-16 15:20:36 -07:00
|
|
|
depends on NET
|
2007-10-16 23:30:16 -07:00
|
|
|
---help---
|
|
|
|
|
Say Y here to get to see options for network filesystems and
|
|
|
|
|
filesystem-related networking code, such as NFS daemon and
|
|
|
|
|
RPCSEC security modules.
|
2008-05-21 17:09:04 -04:00
|
|
|
|
2007-10-16 23:30:16 -07:00
|
|
|
This option alone does not add any kernel code.
|
|
|
|
|
|
|
|
|
|
If you say N, all options in this submenu will be skipped and
|
|
|
|
|
disabled; if unsure, say Y here.
|
|
|
|
|
|
|
|
|
|
if NETWORK_FILESYSTEMS
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-01-22 11:07:41 +03:00
|
|
|
source "fs/nfs/Kconfig"
|
2009-01-22 11:08:58 +03:00
|
|
|
source "fs/nfsd/Kconfig"
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2014-09-12 16:40:20 -04:00
|
|
|
config GRACE_PERIOD
|
|
|
|
|
tristate
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
config LOCKD
|
|
|
|
|
tristate
|
2009-05-12 13:28:09 -07:00
|
|
|
depends on FILE_LOCKING
|
2014-09-12 16:40:20 -04:00
|
|
|
select GRACE_PERIOD
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
config LOCKD_V4
|
|
|
|
|
bool
|
|
|
|
|
depends on NFSD_V3 || NFS_V3
|
2009-05-12 13:28:09 -07:00
|
|
|
depends on FILE_LOCKING
|
2005-04-16 15:20:36 -07:00
|
|
|
default y
|
|
|
|
|
|
2005-06-22 17:16:26 +00:00
|
|
|
config NFS_ACL_SUPPORT
|
|
|
|
|
tristate
|
|
|
|
|
select FS_POSIX_ACL
|
|
|
|
|
|
|
|
|
|
config NFS_COMMON
|
|
|
|
|
bool
|
2014-09-12 16:40:20 -04:00
|
|
|
depends on NFSD || NFS_FS || LOCKD
|
2005-06-22 17:16:26 +00:00
|
|
|
default y
|
|
|
|
|
|
2009-01-22 11:11:56 +03:00
|
|
|
source "net/sunrpc/Kconfig"
|
2009-10-06 11:31:15 -07:00
|
|
|
source "fs/ceph/Kconfig"
|
2008-10-18 20:28:49 -07:00
|
|
|
source "fs/cifs/Kconfig"
|
2005-04-16 15:20:36 -07:00
|
|
|
source "fs/ncpfs/Kconfig"
|
2009-01-22 11:15:06 +03:00
|
|
|
source "fs/coda/Kconfig"
|
2009-01-22 11:16:02 +03:00
|
|
|
source "fs/afs/Kconfig"
|
2009-01-22 11:16:42 +03:00
|
|
|
source "fs/9p/Kconfig"
|
2005-09-09 13:04:18 -07:00
|
|
|
|
2007-10-16 23:30:16 -07:00
|
|
|
endif # NETWORK_FILESYSTEMS
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
source "fs/nls/Kconfig"
|
2006-01-18 09:30:29 +00:00
|
|
|
source "fs/dlm/Kconfig"
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
endmenu
|