xref: /linux/fs/Kconfig (revision 8af915ba1d1eae1f9f31fa8c5db8040492dc4785)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# File system configuration
31da177e4SLinus Torvalds#
41da177e4SLinus Torvalds
51da177e4SLinus Torvaldsmenu "File systems"
61da177e4SLinus Torvalds
79361401eSDavid Howellsif BLOCK
89361401eSDavid Howells
96da0b38fSAlexey Dobriyansource "fs/ext2/Kconfig"
106da0b38fSAlexey Dobriyansource "fs/ext3/Kconfig"
116da0b38fSAlexey Dobriyansource "fs/ext4/Kconfig"
126d79125bSCarsten Otte
136d79125bSCarsten Otteconfig FS_XIP
146d79125bSCarsten Otte# execute in place
156d79125bSCarsten Otte	bool
166d79125bSCarsten Otte	depends on EXT2_FS_XIP
176d79125bSCarsten Otte	default y
186d79125bSCarsten Otte
196da0b38fSAlexey Dobriyansource "fs/jbd/Kconfig"
206da0b38fSAlexey Dobriyansource "fs/jbd2/Kconfig"
21dab291afSMingming Cao
221da177e4SLinus Torvaldsconfig FS_MBCACHE
2302ea2104SMingming Cao# Meta block cache for Extended Attributes (ext2/ext3/ext4)
241da177e4SLinus Torvalds	tristate
252c512397SAdrian Bunk	default y if EXT2_FS=y && EXT2_FS_XATTR
262c512397SAdrian Bunk	default y if EXT3_FS=y && EXT3_FS_XATTR
272c512397SAdrian Bunk	default y if EXT4_FS=y && EXT4_FS_XATTR
282c512397SAdrian Bunk	default m if EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR
291da177e4SLinus Torvalds
30b16ecfe2SAlexey Dobriyansource "fs/reiserfs/Kconfig"
31f5c77969SAlexey Dobriyansource "fs/jfs/Kconfig"
321da177e4SLinus Torvalds
331da177e4SLinus Torvaldsconfig FS_POSIX_ACL
3489206955SChuck Lever# Posix ACL utility routines (for now, only ext2/ext3/jfs/reiserfs/nfs4)
351da177e4SLinus Torvalds#
361da177e4SLinus Torvalds# NOTE: you can implement Posix ACLs without these helpers (XFS does).
371da177e4SLinus Torvalds# 	Never use this symbol for ifdefs.
381da177e4SLinus Torvalds#
391da177e4SLinus Torvalds	bool
40b84c2157SAndreas Gruenbacher	default n
411da177e4SLinus Torvalds
42bfcd17a6SThomas Petazzoniconfig FILE_LOCKING
43bfcd17a6SThomas Petazzoni	bool "Enable POSIX file locking API" if EMBEDDED
44bfcd17a6SThomas Petazzoni	default y
45bfcd17a6SThomas Petazzoni	help
46bfcd17a6SThomas Petazzoni	  This option enables standard file locking support, required
47bfcd17a6SThomas Petazzoni          for filesystems like NFS and for the flock() system
48bfcd17a6SThomas Petazzoni          call. Disabling this option saves about 11k.
49bfcd17a6SThomas Petazzoni
501da177e4SLinus Torvaldssource "fs/xfs/Kconfig"
51f7825dcfSDavid Teiglandsource "fs/gfs2/Kconfig"
522fe4371dSAlexey Dobriyansource "fs/ocfs2/Kconfig"
53335debeeSAlexey Dobriyansource "fs/btrfs/Kconfig"
5460582d1eSChris Mason
5525fad945SRandy Dunlapendif # BLOCK
5625fad945SRandy Dunlap
57272eb014SEric Parissource "fs/notify/Kconfig"
582d9048e2SAmy Griffis
591da177e4SLinus Torvaldsconfig QUOTA
601da177e4SLinus Torvalds	bool "Quota support"
611da177e4SLinus Torvalds	help
621da177e4SLinus Torvalds	  If you say Y here, you will be able to set per user limits for disk
631da177e4SLinus Torvalds	  usage (also called disk quotas). Currently, it works for the
641da177e4SLinus Torvalds	  ext2, ext3, and reiserfs file system. ext3 also supports journalled
651da177e4SLinus Torvalds	  quotas for which you don't need to run quotacheck(8) after an unclean
66919532a5SAdrian Bunk	  shutdown.
67919532a5SAdrian Bunk	  For further details, read the Quota mini-HOWTO, available from
681da177e4SLinus Torvalds	  <http://www.tldp.org/docs.html#howto>, or the documentation provided
691da177e4SLinus Torvalds	  with the quota tools. Probably the quota support is only useful for
701da177e4SLinus Torvalds	  multi user systems. If unsure, say N.
711da177e4SLinus Torvalds
728e893469SJan Karaconfig QUOTA_NETLINK_INTERFACE
738e893469SJan Kara	bool "Report quota messages through netlink interface"
748e893469SJan Kara	depends on QUOTA && NET
758e893469SJan Kara	help
768e893469SJan Kara	  If you say Y here, quota warnings (about exceeding softlimit, reaching
778e893469SJan Kara	  hardlimit, etc.) will be reported through netlink interface. If unsure,
788e893469SJan Kara	  say Y.
798e893469SJan Kara
808e893469SJan Karaconfig PRINT_QUOTA_WARNING
818e893469SJan Kara	bool "Print quota warnings to console (OBSOLETE)"
828e893469SJan Kara	depends on QUOTA
838e893469SJan Kara	default y
848e893469SJan Kara	help
858e893469SJan Kara	  If you say Y here, quota warnings (about exceeding softlimit, reaching
868e893469SJan Kara	  hardlimit, etc.) will be printed to the process' controlling terminal.
878e893469SJan Kara	  Note that this behavior is currently deprecated and may go away in
888e893469SJan Kara	  future. Please use notification via netlink socket instead.
898e893469SJan Kara
901ccd14b9SJan Kara# Generic support for tree structured quota files. Seleted when needed.
911ccd14b9SJan Karaconfig QUOTA_TREE
921ccd14b9SJan Kara	 tristate
931ccd14b9SJan Kara
941da177e4SLinus Torvaldsconfig QFMT_V1
951da177e4SLinus Torvalds	tristate "Old quota format support"
961da177e4SLinus Torvalds	depends on QUOTA
971da177e4SLinus Torvalds	help
981da177e4SLinus Torvalds	  This quota format was (is) used by kernels earlier than 2.4.22. If
991da177e4SLinus Torvalds	  you have quota working and you don't want to convert to new quota
1001da177e4SLinus Torvalds	  format say Y here.
1011da177e4SLinus Torvalds
1021da177e4SLinus Torvaldsconfig QFMT_V2
1031da177e4SLinus Torvalds	tristate "Quota format v2 support"
1041da177e4SLinus Torvalds	depends on QUOTA
1051ccd14b9SJan Kara	select QUOTA_TREE
1061da177e4SLinus Torvalds	help
1071da177e4SLinus Torvalds	  This quota format allows using quotas with 32-bit UIDs/GIDs. If you
108919532a5SAdrian Bunk	  need this functionality say Y here.
1091da177e4SLinus Torvalds
1101da177e4SLinus Torvaldsconfig QUOTACTL
1111da177e4SLinus Torvalds	bool
1121da177e4SLinus Torvalds	depends on XFS_QUOTA || QUOTA
1131da177e4SLinus Torvalds	default y
1141da177e4SLinus Torvalds
11590ffd467SAlexey Dobriyansource "fs/autofs/Kconfig"
11690ffd467SAlexey Dobriyansource "fs/autofs4/Kconfig"
1173ef7784eSAlexey Dobriyansource "fs/fuse/Kconfig"
11804578f17SMiklos Szeredi
119f2fbc6c2SRandy Dunlapconfig GENERIC_ACL
120f2fbc6c2SRandy Dunlap	bool
121f2fbc6c2SRandy Dunlap	select FS_POSIX_ACL
122f2fbc6c2SRandy Dunlap
1239361401eSDavid Howellsif BLOCK
1241da177e4SLinus Torvaldsmenu "CD-ROM/DVD Filesystems"
1251da177e4SLinus Torvalds
126ddfaccd9SAlexey Dobriyansource "fs/isofs/Kconfig"
127ddfaccd9SAlexey Dobriyansource "fs/udf/Kconfig"
1281da177e4SLinus Torvalds
1291da177e4SLinus Torvaldsendmenu
13025fad945SRandy Dunlapendif # BLOCK
1311da177e4SLinus Torvalds
1329361401eSDavid Howellsif BLOCK
1331da177e4SLinus Torvaldsmenu "DOS/FAT/NT Filesystems"
1341da177e4SLinus Torvalds
1351c6ace01SAlexey Dobriyansource "fs/fat/Kconfig"
1369d73ac9eSAlexey Dobriyansource "fs/ntfs/Kconfig"
1371da177e4SLinus Torvalds
1381da177e4SLinus Torvaldsendmenu
13925fad945SRandy Dunlapendif # BLOCK
1401da177e4SLinus Torvalds
1411da177e4SLinus Torvaldsmenu "Pseudo filesystems"
1421da177e4SLinus Torvalds
1436eedf8d3SAlexey Dobriyansource "fs/proc/Kconfig"
1445f3a211aSAlexey Dobriyansource "fs/sysfs/Kconfig"
1451da177e4SLinus Torvalds
1461da177e4SLinus Torvaldsconfig TMPFS
1471da177e4SLinus Torvalds	bool "Virtual memory file system support (former shm fs)"
1481da177e4SLinus Torvalds	help
1491da177e4SLinus Torvalds	  Tmpfs is a file system which keeps all files in virtual memory.
1501da177e4SLinus Torvalds
1511da177e4SLinus Torvalds	  Everything in tmpfs is temporary in the sense that no files will be
1521da177e4SLinus Torvalds	  created on your hard drive. The files live in memory and swap
1531da177e4SLinus Torvalds	  space. If you unmount a tmpfs instance, everything stored therein is
1541da177e4SLinus Torvalds	  lost.
1551da177e4SLinus Torvalds
1561da177e4SLinus Torvalds	  See <file:Documentation/filesystems/tmpfs.txt> for details.
1571da177e4SLinus Torvalds
15839f0247dSAndreas Gruenbacherconfig TMPFS_POSIX_ACL
15939f0247dSAndreas Gruenbacher	bool "Tmpfs POSIX Access Control Lists"
16039f0247dSAndreas Gruenbacher	depends on TMPFS
16139f0247dSAndreas Gruenbacher	select GENERIC_ACL
16239f0247dSAndreas Gruenbacher	help
16339f0247dSAndreas Gruenbacher	  POSIX Access Control Lists (ACLs) support permissions for users and
16439f0247dSAndreas Gruenbacher	  groups beyond the owner/group/world scheme.
16539f0247dSAndreas Gruenbacher
16639f0247dSAndreas Gruenbacher	  To learn more about Access Control Lists, visit the POSIX ACLs for
16739f0247dSAndreas Gruenbacher	  Linux website <http://acl.bestbits.at/>.
16839f0247dSAndreas Gruenbacher
16939f0247dSAndreas Gruenbacher	  If you don't know what Access Control Lists are, say N.
17039f0247dSAndreas Gruenbacher
1711da177e4SLinus Torvaldsconfig HUGETLBFS
1721da177e4SLinus Torvalds	bool "HugeTLB file system support"
17353492b1dSGerald Schaefer	depends on X86 || IA64 || PPC64 || SPARC64 || (SUPERH && MMU) || \
17453492b1dSGerald Schaefer		   (S390 && 64BIT) || BROKEN
175dda27d1aSArthur Othieno	help
176dda27d1aSArthur Othieno	  hugetlbfs is a filesystem backing for HugeTLB pages, based on
177dda27d1aSArthur Othieno	  ramfs. For architectures that support it, say Y here and read
178dda27d1aSArthur Othieno	  <file:Documentation/vm/hugetlbpage.txt> for details.
179dda27d1aSArthur Othieno
180dda27d1aSArthur Othieno	  If unsure, say N.
1811da177e4SLinus Torvalds
1821da177e4SLinus Torvaldsconfig HUGETLB_PAGE
1831da177e4SLinus Torvalds	def_bool HUGETLBFS
1841da177e4SLinus Torvalds
1854591dabeSAlexey Dobriyansource "fs/configfs/Kconfig"
1867063fbf2SJoel Becker
1871da177e4SLinus Torvaldsendmenu
1881da177e4SLinus Torvalds
18967ec7d3aSRandy Dunlapmenuconfig MISC_FILESYSTEMS
19067ec7d3aSRandy Dunlap	bool "Miscellaneous filesystems"
19167ec7d3aSRandy Dunlap	default y
19267ec7d3aSRandy Dunlap	---help---
19367ec7d3aSRandy Dunlap	  Say Y here to get to see options for various miscellaneous
19467ec7d3aSRandy Dunlap	  filesystems, such as filesystems that came from other
19567ec7d3aSRandy Dunlap	  operating systems.
19667ec7d3aSRandy Dunlap
19767ec7d3aSRandy Dunlap	  This option alone does not add any kernel code.
19867ec7d3aSRandy Dunlap
19967ec7d3aSRandy Dunlap	  If you say N, all options in this submenu will be skipped and
20067ec7d3aSRandy Dunlap	  disabled; if unsure, say Y here.
20167ec7d3aSRandy Dunlap
20267ec7d3aSRandy Dunlapif MISC_FILESYSTEMS
2031da177e4SLinus Torvalds
204bc2de2aeSAlexey Dobriyansource "fs/adfs/Kconfig"
20510951bf0SAlexey Dobriyansource "fs/affs/Kconfig"
206295c896cSAlexey Dobriyansource "fs/ecryptfs/Kconfig"
207b08bac1fSAlexey Dobriyansource "fs/hfs/Kconfig"
208b08bac1fSAlexey Dobriyansource "fs/hfsplus/Kconfig"
2090b09eb32SAlexey Dobriyansource "fs/befs/Kconfig"
2100ff42384SAlexey Dobriyansource "fs/bfs/Kconfig"
211571f0a0bSAlexey Dobriyansource "fs/efs/Kconfig"
21231db6e9eSAlexey Dobriyansource "fs/jffs2/Kconfig"
2130d7eff87SArtem Bityutskiy# UBIFS File system configuration
2140d7eff87SArtem Bityutskiysource "fs/ubifs/Kconfig"
2152a22783bSAlexey Dobriyansource "fs/cramfs/Kconfig"
21622635ec9SAlexey Dobriyansource "fs/squashfs/Kconfig"
21722135169SAlexey Dobriyansource "fs/freevxfs/Kconfig"
2188b1cd7d3SAlexey Dobriyansource "fs/minix/Kconfig"
219da55e6f9SAlexey Dobriyansource "fs/omfs/Kconfig"
220928ea192SAlexey Dobriyansource "fs/hpfs/Kconfig"
2214c741583SAlexey Dobriyansource "fs/qnx4/Kconfig"
22241810246SAlexey Dobriyansource "fs/romfs/Kconfig"
223*8af915baSAlexey Dobriyansource "fs/sysv/Kconfig"
2241da177e4SLinus Torvalds
2251da177e4SLinus Torvaldsconfig UFS_FS
2261da177e4SLinus Torvalds	tristate "UFS file system support (read only)"
2279361401eSDavid Howells	depends on BLOCK
2281da177e4SLinus Torvalds	help
2291da177e4SLinus Torvalds	  BSD and derivate versions of Unix (such as SunOS, FreeBSD, NetBSD,
2301da177e4SLinus Torvalds	  OpenBSD and NeXTstep) use a file system called UFS. Some System V
2311da177e4SLinus Torvalds	  Unixes can create and mount hard disk partitions and diskettes using
2321da177e4SLinus Torvalds	  this file system as well. Saying Y here will allow you to read from
2331da177e4SLinus Torvalds	  these partitions; if you also want to write to them, say Y to the
2341da177e4SLinus Torvalds	  experimental "UFS file system write support", below. Please read the
2351da177e4SLinus Torvalds	  file <file:Documentation/filesystems/ufs.txt> for more information.
2361da177e4SLinus Torvalds
2371da177e4SLinus Torvalds          The recently released UFS2 variant (used in FreeBSD 5.x) is
2381da177e4SLinus Torvalds          READ-ONLY supported.
2391da177e4SLinus Torvalds
2401da177e4SLinus Torvalds	  Note that this option is generally not needed for floppies, since a
2411da177e4SLinus Torvalds	  good portable way to transport files and directories between unixes
2421da177e4SLinus Torvalds	  (and even other operating systems) is given by the tar program ("man
2431da177e4SLinus Torvalds	  tar" or preferably "info tar").
2441da177e4SLinus Torvalds
2451da177e4SLinus Torvalds	  When accessing NeXTstep files, you may need to convert them from the
2461da177e4SLinus Torvalds	  NeXT character set to the Latin1 character set; use the program
2471da177e4SLinus Torvalds	  recode ("info recode") for this purpose.
2481da177e4SLinus Torvalds
2491da177e4SLinus Torvalds	  To compile the UFS file system support as a module, choose M here: the
2501da177e4SLinus Torvalds	  module will be called ufs.
2511da177e4SLinus Torvalds
2521da177e4SLinus Torvalds	  If you haven't heard about all of this before, it's safe to say N.
2531da177e4SLinus Torvalds
2541da177e4SLinus Torvaldsconfig UFS_FS_WRITE
2551da177e4SLinus Torvalds	bool "UFS file system write support (DANGEROUS)"
2565afb3145SEvgeniy Dushistov	depends on UFS_FS && EXPERIMENTAL
2571da177e4SLinus Torvalds	help
2581da177e4SLinus Torvalds	  Say Y here if you want to try writing to UFS partitions. This is
2591da177e4SLinus Torvalds	  experimental, so you should back up your UFS partitions beforehand.
2601da177e4SLinus Torvalds
261abf5d15fSEvgeniy Dushistovconfig UFS_DEBUG
262abf5d15fSEvgeniy Dushistov	bool "UFS debugging"
263abf5d15fSEvgeniy Dushistov	depends on UFS_FS
264abf5d15fSEvgeniy Dushistov	help
265abf5d15fSEvgeniy Dushistov	  If you are experiencing any problems with the UFS filesystem, say
266abf5d15fSEvgeniy Dushistov	  Y here.  This will result in _many_ additional debugging messages to be
267abf5d15fSEvgeniy Dushistov	  written to the system log.
268abf5d15fSEvgeniy Dushistov
26967ec7d3aSRandy Dunlapendif # MISC_FILESYSTEMS
2701da177e4SLinus Torvalds
271ea0985adSJan Engelhardtmenuconfig NETWORK_FILESYSTEMS
272ea0985adSJan Engelhardt	bool "Network File Systems"
273ea0985adSJan Engelhardt	default y
2741da177e4SLinus Torvalds	depends on NET
275ea0985adSJan Engelhardt	---help---
276ea0985adSJan Engelhardt	  Say Y here to get to see options for network filesystems and
277ea0985adSJan Engelhardt	  filesystem-related networking code, such as NFS daemon and
278ea0985adSJan Engelhardt	  RPCSEC security modules.
2796fb1bc10SChuck Lever
280ea0985adSJan Engelhardt	  This option alone does not add any kernel code.
281ea0985adSJan Engelhardt
282ea0985adSJan Engelhardt	  If you say N, all options in this submenu will be skipped and
283ea0985adSJan Engelhardt	  disabled; if unsure, say Y here.
284ea0985adSJan Engelhardt
285ea0985adSJan Engelhardtif NETWORK_FILESYSTEMS
2861da177e4SLinus Torvalds
2871da177e4SLinus Torvaldsconfig NFS_FS
2886fb1bc10SChuck Lever	tristate "NFS client support"
2891da177e4SLinus Torvalds	depends on INET
2901da177e4SLinus Torvalds	select LOCKD
2911da177e4SLinus Torvalds	select SUNRPC
292b7fa0554SAndreas Gruenbacher	select NFS_ACL_SUPPORT if NFS_V3_ACL
2931da177e4SLinus Torvalds	help
2946fb1bc10SChuck Lever	  Choose Y here if you want to access files residing on other
2956fb1bc10SChuck Lever	  computers using Sun's Network File System protocol.  To compile
2966fb1bc10SChuck Lever	  this file system support as a module, choose M here: the module
2976fb1bc10SChuck Lever	  will be called nfs.
2981da177e4SLinus Torvalds
2996fb1bc10SChuck Lever	  To mount file systems exported by NFS servers, you also need to
3006fb1bc10SChuck Lever	  install the user space mount.nfs command which can be found in
3016fb1bc10SChuck Lever	  the Linux nfs-utils package, available from http://linux-nfs.org/.
3026fb1bc10SChuck Lever	  Information about using the mount command is available in the
3036fb1bc10SChuck Lever	  mount(8) man page.  More detail about the Linux NFS client
3046fb1bc10SChuck Lever	  implementation is available via the nfs(5) man page.
3051da177e4SLinus Torvalds
3066fb1bc10SChuck Lever	  Below you can choose which versions of the NFS protocol are
3076fb1bc10SChuck Lever	  available in the kernel to mount NFS servers.  Support for NFS
3086fb1bc10SChuck Lever	  version 2 (RFC 1094) is always available when NFS_FS is selected.
3091da177e4SLinus Torvalds
3106fb1bc10SChuck Lever	  To configure a system which mounts its root file system via NFS
3116fb1bc10SChuck Lever	  at boot time, say Y here, select "Kernel level IP
3126fb1bc10SChuck Lever	  autoconfiguration" in the NETWORK menu, and select "Root file
3136fb1bc10SChuck Lever	  system on NFS" below.  You cannot compile this file system as a
3146fb1bc10SChuck Lever	  module in this case.
3151da177e4SLinus Torvalds
3166fb1bc10SChuck Lever	  If unsure, say N.
3171da177e4SLinus Torvalds
3181da177e4SLinus Torvaldsconfig NFS_V3
3196fb1bc10SChuck Lever	bool "NFS client support for NFS version 3"
3201da177e4SLinus Torvalds	depends on NFS_FS
3211da177e4SLinus Torvalds	help
3226fb1bc10SChuck Lever	  This option enables support for version 3 of the NFS protocol
3236fb1bc10SChuck Lever	  (RFC 1813) in the kernel's NFS client.
3241da177e4SLinus Torvalds
3251da177e4SLinus Torvalds	  If unsure, say Y.
3261da177e4SLinus Torvalds
327b7fa0554SAndreas Gruenbacherconfig NFS_V3_ACL
3286fb1bc10SChuck Lever	bool "NFS client support for the NFSv3 ACL protocol extension"
329b7fa0554SAndreas Gruenbacher	depends on NFS_V3
330b7fa0554SAndreas Gruenbacher	help
3316fb1bc10SChuck Lever	  Some NFS servers support an auxiliary NFSv3 ACL protocol that
3326fb1bc10SChuck Lever	  Sun added to Solaris but never became an official part of the
3336fb1bc10SChuck Lever	  NFS version 3 protocol.  This protocol extension allows
3346fb1bc10SChuck Lever	  applications on NFS clients to manipulate POSIX Access Control
3356fb1bc10SChuck Lever	  Lists on files residing on NFS servers.  NFS servers enforce
3366fb1bc10SChuck Lever	  ACLs on local files whether this protocol is available or not.
3376fb1bc10SChuck Lever
3386fb1bc10SChuck Lever	  Choose Y here if your NFS server supports the Solaris NFSv3 ACL
3396fb1bc10SChuck Lever	  protocol extension and you want your NFS client to allow
3406fb1bc10SChuck Lever	  applications to access and modify ACLs on files on the server.
3416fb1bc10SChuck Lever
3426fb1bc10SChuck Lever	  Most NFS servers don't support the Solaris NFSv3 ACL protocol
3436fb1bc10SChuck Lever	  extension.  You can choose N here or specify the "noacl" mount
3446fb1bc10SChuck Lever	  option to prevent your NFS client from trying to use the NFSv3
3456fb1bc10SChuck Lever	  ACL protocol.
346b7fa0554SAndreas Gruenbacher
347b7fa0554SAndreas Gruenbacher	  If unsure, say N.
348b7fa0554SAndreas Gruenbacher
3491da177e4SLinus Torvaldsconfig NFS_V4
3506fb1bc10SChuck Lever	bool "NFS client support for NFS version 4 (EXPERIMENTAL)"
3511da177e4SLinus Torvalds	depends on NFS_FS && EXPERIMENTAL
3521da177e4SLinus Torvalds	select RPCSEC_GSS_KRB5
3531da177e4SLinus Torvalds	help
3546fb1bc10SChuck Lever	  This option enables support for version 4 of the NFS protocol
3556fb1bc10SChuck Lever	  (RFC 3530) in the kernel's NFS client.
3561da177e4SLinus Torvalds
3576fb1bc10SChuck Lever	  To mount NFS servers using NFSv4, you also need to install user
3586fb1bc10SChuck Lever	  space programs which can be found in the Linux nfs-utils package,
3596fb1bc10SChuck Lever	  available from http://linux-nfs.org/.
3601da177e4SLinus Torvalds
3611da177e4SLinus Torvalds	  If unsure, say N.
3621da177e4SLinus Torvalds
3636fb1bc10SChuck Leverconfig ROOT_NFS
3646fb1bc10SChuck Lever	bool "Root file system on NFS"
3656fb1bc10SChuck Lever	depends on NFS_FS=y && IP_PNP
3666fb1bc10SChuck Lever	help
3676fb1bc10SChuck Lever	  If you want your system to mount its root file system via NFS,
3686fb1bc10SChuck Lever	  choose Y here.  This is common practice for managing systems
3696fb1bc10SChuck Lever	  without local permanent storage.  For details, read
3706fb1bc10SChuck Lever	  <file:Documentation/filesystems/nfsroot.txt>.
3716fb1bc10SChuck Lever
3726fb1bc10SChuck Lever	  Most people say N here.
3736fb1bc10SChuck Lever
3741da177e4SLinus Torvaldsconfig NFSD
3751da177e4SLinus Torvalds	tristate "NFS server support"
3761da177e4SLinus Torvalds	depends on INET
3771da177e4SLinus Torvalds	select LOCKD
3781da177e4SLinus Torvalds	select SUNRPC
3791da177e4SLinus Torvalds	select EXPORTFS
380f05e15b5SHerbert Xu	select NFS_ACL_SUPPORT if NFSD_V2_ACL
3811da177e4SLinus Torvalds	help
382d24455b5SChuck Lever	  Choose Y here if you want to allow other computers to access
383d24455b5SChuck Lever	  files residing on this system using Sun's Network File System
384d24455b5SChuck Lever	  protocol.  To compile the NFS server support as a module,
385d24455b5SChuck Lever	  choose M here: the module will be called nfsd.
3861da177e4SLinus Torvalds
387d24455b5SChuck Lever	  You may choose to use a user-space NFS server instead, in which
388d24455b5SChuck Lever	  case you can choose N here.
3891da177e4SLinus Torvalds
390d24455b5SChuck Lever	  To export local file systems using NFS, you also need to install
391d24455b5SChuck Lever	  user space programs which can be found in the Linux nfs-utils
392d24455b5SChuck Lever	  package, available from http://linux-nfs.org/.  More detail about
393d24455b5SChuck Lever	  the Linux NFS server implementation is available via the
394d24455b5SChuck Lever	  exports(5) man page.
3951da177e4SLinus Torvalds
396d24455b5SChuck Lever	  Below you can choose which versions of the NFS protocol are
397d24455b5SChuck Lever	  available to clients mounting the NFS server on this system.
398d24455b5SChuck Lever	  Support for NFS version 2 (RFC 1094) is always available when
399d24455b5SChuck Lever	  CONFIG_NFSD is selected.
4001da177e4SLinus Torvalds
401d24455b5SChuck Lever	  If unsure, say N.
4021da177e4SLinus Torvalds
403a257cdd0SAndreas Gruenbacherconfig NFSD_V2_ACL
404a257cdd0SAndreas Gruenbacher	bool
405a257cdd0SAndreas Gruenbacher	depends on NFSD
406a257cdd0SAndreas Gruenbacher
4071da177e4SLinus Torvaldsconfig NFSD_V3
408d24455b5SChuck Lever	bool "NFS server support for NFS version 3"
4091da177e4SLinus Torvalds	depends on NFSD
4101da177e4SLinus Torvalds	help
411d24455b5SChuck Lever	  This option enables support in your system's NFS server for
412d24455b5SChuck Lever	  version 3 of the NFS protocol (RFC 1813).
413d24455b5SChuck Lever
414d24455b5SChuck Lever	  If unsure, say Y.
4151da177e4SLinus Torvalds
416a257cdd0SAndreas Gruenbacherconfig NFSD_V3_ACL
417d24455b5SChuck Lever	bool "NFS server support for the NFSv3 ACL protocol extension"
418a257cdd0SAndreas Gruenbacher	depends on NFSD_V3
41978dd0992SChuck Lever	select NFSD_V2_ACL
420a257cdd0SAndreas Gruenbacher	help
421d24455b5SChuck Lever	  Solaris NFS servers support an auxiliary NFSv3 ACL protocol that
422d24455b5SChuck Lever	  never became an official part of the NFS version 3 protocol.
423d24455b5SChuck Lever	  This protocol extension allows applications on NFS clients to
424d24455b5SChuck Lever	  manipulate POSIX Access Control Lists on files residing on NFS
425d24455b5SChuck Lever	  servers.  NFS servers enforce POSIX ACLs on local files whether
426d24455b5SChuck Lever	  this protocol is available or not.
427d24455b5SChuck Lever
428d24455b5SChuck Lever	  This option enables support in your system's NFS server for the
429d24455b5SChuck Lever	  NFSv3 ACL protocol extension allowing NFS clients to manipulate
430d24455b5SChuck Lever	  POSIX ACLs on files exported by your system's NFS server.  NFS
431d24455b5SChuck Lever	  clients which support the Solaris NFSv3 ACL protocol can then
432d24455b5SChuck Lever	  access and modify ACLs on your NFS server.
433d24455b5SChuck Lever
434d24455b5SChuck Lever	  To store ACLs on your NFS server, you also need to enable ACL-
435d24455b5SChuck Lever	  related CONFIG options for your local file systems of choice.
436d24455b5SChuck Lever
437d24455b5SChuck Lever	  If unsure, say N.
438a257cdd0SAndreas Gruenbacher
4391da177e4SLinus Torvaldsconfig NFSD_V4
440d24455b5SChuck Lever	bool "NFS server support for NFS version 4 (EXPERIMENTAL)"
4411a448fdbSChuck Lever	depends on NFSD && PROC_FS && EXPERIMENTAL
4421a448fdbSChuck Lever	select NFSD_V3
44389206955SChuck Lever	select FS_POSIX_ACL
44442ed95c4SJ. Bruce Fields	select RPCSEC_GSS_KRB5
4451da177e4SLinus Torvalds	help
446d24455b5SChuck Lever	  This option enables support in your system's NFS server for
447d24455b5SChuck Lever	  version 4 of the NFS protocol (RFC 3530).
448d24455b5SChuck Lever
449d24455b5SChuck Lever	  To export files using NFSv4, you need to install additional user
450d24455b5SChuck Lever	  space programs which can be found in the Linux nfs-utils package,
451d24455b5SChuck Lever	  available from http://linux-nfs.org/.
452d24455b5SChuck Lever
4531da177e4SLinus Torvalds	  If unsure, say N.
4541da177e4SLinus Torvalds
4551da177e4SLinus Torvaldsconfig LOCKD
4561da177e4SLinus Torvalds	tristate
4571da177e4SLinus Torvalds
4581da177e4SLinus Torvaldsconfig LOCKD_V4
4591da177e4SLinus Torvalds	bool
4601da177e4SLinus Torvalds	depends on NFSD_V3 || NFS_V3
4611da177e4SLinus Torvalds	default y
4621da177e4SLinus Torvalds
4631da177e4SLinus Torvaldsconfig EXPORTFS
4641da177e4SLinus Torvalds	tristate
4651da177e4SLinus Torvalds
466a257cdd0SAndreas Gruenbacherconfig NFS_ACL_SUPPORT
467a257cdd0SAndreas Gruenbacher	tristate
468a257cdd0SAndreas Gruenbacher	select FS_POSIX_ACL
469a257cdd0SAndreas Gruenbacher
470a257cdd0SAndreas Gruenbacherconfig NFS_COMMON
471a257cdd0SAndreas Gruenbacher	bool
472a257cdd0SAndreas Gruenbacher	depends on NFSD || NFS_FS
473a257cdd0SAndreas Gruenbacher	default y
474a257cdd0SAndreas Gruenbacher
4751da177e4SLinus Torvaldsconfig SUNRPC
4761da177e4SLinus Torvalds	tristate
4771da177e4SLinus Torvalds
4781da177e4SLinus Torvaldsconfig SUNRPC_GSS
4791da177e4SLinus Torvalds	tristate
4801da177e4SLinus Torvalds
481c3a57ed7S\"Talpey, Thomas\config SUNRPC_XPRT_RDMA
4823211e4ebSJames Lentini	tristate
483113632d0S\"Talpey, Thomas\	depends on SUNRPC && INFINIBAND && EXPERIMENTAL
4843211e4ebSJames Lentini	default SUNRPC && INFINIBAND
485327a299dSChuck Lever	help
486327a299dSChuck Lever	  This option enables an RPC client transport capability that
487327a299dSChuck Lever	  allows the NFS client to mount servers via an RDMA-enabled
488327a299dSChuck Lever	  transport.
489327a299dSChuck Lever
490327a299dSChuck Lever	  To compile RPC client RDMA transport support as a module,
491327a299dSChuck Lever	  choose M here: the module will be called xprtrdma.
492327a299dSChuck Lever
493327a299dSChuck Lever	  If unsure, say N.
494c3a57ed7S\"Talpey, Thomas\
495a26cfad6SChuck Leverconfig SUNRPC_REGISTER_V4
496a26cfad6SChuck Lever	bool "Register local RPC services via rpcbind v4 (EXPERIMENTAL)"
497a26cfad6SChuck Lever	depends on SUNRPC && EXPERIMENTAL
498a26cfad6SChuck Lever	default n
499a26cfad6SChuck Lever	help
500a26cfad6SChuck Lever	  Sun added support for registering RPC services at an IPv6
501a26cfad6SChuck Lever	  address by creating two new versions of the rpcbind protocol
502a26cfad6SChuck Lever	  (RFC 1833).
503a26cfad6SChuck Lever
504a26cfad6SChuck Lever	  This option enables support in the kernel RPC server for
505a26cfad6SChuck Lever	  registering kernel RPC services via version 4 of the rpcbind
506a26cfad6SChuck Lever	  protocol.  If you enable this option, you must run a portmapper
507a26cfad6SChuck Lever	  daemon that supports rpcbind protocol version 4.
508a26cfad6SChuck Lever
509a26cfad6SChuck Lever	  Serving NFS over IPv6 from knfsd (the kernel's NFS server)
510a26cfad6SChuck Lever	  requires that you enable this option and use a portmapper that
511a26cfad6SChuck Lever	  supports rpcbind version 4.
512a26cfad6SChuck Lever
513a26cfad6SChuck Lever	  If unsure, say N to get traditional behavior (register kernel
514a26cfad6SChuck Lever	  RPC services using only rpcbind version 2).  Distributions
515a26cfad6SChuck Lever	  using the legacy Linux portmapper daemon must say N here.
516a26cfad6SChuck Lever
5171da177e4SLinus Torvaldsconfig RPCSEC_GSS_KRB5
5181da177e4SLinus Torvalds	tristate "Secure RPC: Kerberos V mechanism (EXPERIMENTAL)"
5191da177e4SLinus Torvalds	depends on SUNRPC && EXPERIMENTAL
5201da177e4SLinus Torvalds	select SUNRPC_GSS
5211da177e4SLinus Torvalds	select CRYPTO
5221da177e4SLinus Torvalds	select CRYPTO_MD5
5231da177e4SLinus Torvalds	select CRYPTO_DES
524bcbaecbbSPatrick McHardy	select CRYPTO_CBC
5251da177e4SLinus Torvalds	help
526327a299dSChuck Lever	  Choose Y here to enable Secure RPC using the Kerberos version 5
527327a299dSChuck Lever	  GSS-API mechanism (RFC 1964).
5281da177e4SLinus Torvalds
529327a299dSChuck Lever	  Secure RPC calls with Kerberos require an auxiliary user-space
530327a299dSChuck Lever	  daemon which may be found in the Linux nfs-utils package
531327a299dSChuck Lever	  available from http://linux-nfs.org/.  In addition, user-space
532327a299dSChuck Lever	  Kerberos support should be installed.
5331da177e4SLinus Torvalds
5341da177e4SLinus Torvalds	  If unsure, say N.
5351da177e4SLinus Torvalds
5361da177e4SLinus Torvaldsconfig RPCSEC_GSS_SPKM3
5371da177e4SLinus Torvalds	tristate "Secure RPC: SPKM3 mechanism (EXPERIMENTAL)"
5381da177e4SLinus Torvalds	depends on SUNRPC && EXPERIMENTAL
5391da177e4SLinus Torvalds	select SUNRPC_GSS
5401da177e4SLinus Torvalds	select CRYPTO
5411da177e4SLinus Torvalds	select CRYPTO_MD5
5421da177e4SLinus Torvalds	select CRYPTO_DES
543df6db302SJ. Bruce Fields	select CRYPTO_CAST5
544bcbaecbbSPatrick McHardy	select CRYPTO_CBC
5451da177e4SLinus Torvalds	help
546327a299dSChuck Lever	  Choose Y here to enable Secure RPC using the SPKM3 public key
547327a299dSChuck Lever	  GSS-API mechansim (RFC 2025).
5481da177e4SLinus Torvalds
549327a299dSChuck Lever	  Secure RPC calls with SPKM3 require an auxiliary userspace
550327a299dSChuck Lever	  daemon which may be found in the Linux nfs-utils package
551327a299dSChuck Lever	  available from http://linux-nfs.org/.
5521da177e4SLinus Torvalds
5531da177e4SLinus Torvalds	  If unsure, say N.
5541da177e4SLinus Torvalds
5551da177e4SLinus Torvaldsconfig SMB_FS
556c7736339SAndrew Morton	tristate "SMB file system support (OBSOLETE, please use CIFS)"
5571da177e4SLinus Torvalds	depends on INET
5581da177e4SLinus Torvalds	select NLS
5591da177e4SLinus Torvalds	help
5601da177e4SLinus Torvalds	  SMB (Server Message Block) is the protocol Windows for Workgroups
5611da177e4SLinus Torvalds	  (WfW), Windows 95/98, Windows NT and OS/2 Lan Manager use to share
5621da177e4SLinus Torvalds	  files and printers over local networks.  Saying Y here allows you to
5631da177e4SLinus Torvalds	  mount their file systems (often called "shares" in this context) and
5641da177e4SLinus Torvalds	  access them just like any other Unix directory.  Currently, this
5651da177e4SLinus Torvalds	  works only if the Windows machines use TCP/IP as the underlying
5661da177e4SLinus Torvalds	  transport protocol, and not NetBEUI.  For details, read
5671da177e4SLinus Torvalds	  <file:Documentation/filesystems/smbfs.txt> and the SMB-HOWTO,
5681da177e4SLinus Torvalds	  available from <http://www.tldp.org/docs.html#howto>.
5691da177e4SLinus Torvalds
5701da177e4SLinus Torvalds	  Note: if you just want your box to act as an SMB *server* and make
5711da177e4SLinus Torvalds	  files and printing services available to Windows clients (which need
5721da177e4SLinus Torvalds	  to have a TCP/IP stack), you don't need to say Y here; you can use
5731da177e4SLinus Torvalds	  the program SAMBA (available from <ftp://ftp.samba.org/pub/samba/>)
5741da177e4SLinus Torvalds	  for that.
5751da177e4SLinus Torvalds
5761da177e4SLinus Torvalds	  General information about how to connect Linux, Windows machines and
5771da177e4SLinus Torvalds	  Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
5781da177e4SLinus Torvalds
579c7736339SAndrew Morton	  To compile the SMB support as a module, choose M here:
580c7736339SAndrew Morton	  the module will be called smbfs.  Most people say N, however.
5811da177e4SLinus Torvalds
5821da177e4SLinus Torvaldsconfig SMB_NLS_DEFAULT
5831da177e4SLinus Torvalds	bool "Use a default NLS"
5841da177e4SLinus Torvalds	depends on SMB_FS
5851da177e4SLinus Torvalds	help
5861da177e4SLinus Torvalds	  Enabling this will make smbfs use nls translations by default. You
5871da177e4SLinus Torvalds	  need to specify the local charset (CONFIG_NLS_DEFAULT) in the nls
5881da177e4SLinus Torvalds	  settings and you need to give the default nls for the SMB server as
5891da177e4SLinus Torvalds	  CONFIG_SMB_NLS_REMOTE.
5901da177e4SLinus Torvalds
5911da177e4SLinus Torvalds	  The nls settings can be changed at mount time, if your smbmount
5921da177e4SLinus Torvalds	  supports that, using the codepage and iocharset parameters.
5931da177e4SLinus Torvalds
5941da177e4SLinus Torvalds	  smbmount from samba 2.2.0 or later supports this.
5951da177e4SLinus Torvalds
5961da177e4SLinus Torvaldsconfig SMB_NLS_REMOTE
5971da177e4SLinus Torvalds	string "Default Remote NLS Option"
5981da177e4SLinus Torvalds	depends on SMB_NLS_DEFAULT
5991da177e4SLinus Torvalds	default "cp437"
6001da177e4SLinus Torvalds	help
6011da177e4SLinus Torvalds	  This setting allows you to specify a default value for which
6021da177e4SLinus Torvalds	  codepage the server uses. If this field is left blank no
6031da177e4SLinus Torvalds	  translations will be done by default. The local codepage/charset
6041da177e4SLinus Torvalds	  default to CONFIG_NLS_DEFAULT.
6051da177e4SLinus Torvalds
6061da177e4SLinus Torvalds	  The nls settings can be changed at mount time, if your smbmount
6071da177e4SLinus Torvalds	  supports that, using the codepage and iocharset parameters.
6081da177e4SLinus Torvalds
6091da177e4SLinus Torvalds	  smbmount from samba 2.2.0 or later supports this.
6101da177e4SLinus Torvalds
611bb26b963SAlexey Dobriyansource "fs/cifs/Kconfig"
6126103335dSSteve French
6131da177e4SLinus Torvaldsconfig NCP_FS
6141da177e4SLinus Torvalds	tristate "NCP file system support (to mount NetWare volumes)"
6151da177e4SLinus Torvalds	depends on IPX!=n || INET
6161da177e4SLinus Torvalds	help
6171da177e4SLinus Torvalds	  NCP (NetWare Core Protocol) is a protocol that runs over IPX and is
6181da177e4SLinus Torvalds	  used by Novell NetWare clients to talk to file servers.  It is to
6191da177e4SLinus Torvalds	  IPX what NFS is to TCP/IP, if that helps.  Saying Y here allows you
6201da177e4SLinus Torvalds	  to mount NetWare file server volumes and to access them just like
6211da177e4SLinus Torvalds	  any other Unix directory.  For details, please read the file
6221da177e4SLinus Torvalds	  <file:Documentation/filesystems/ncpfs.txt> in the kernel source and
6231da177e4SLinus Torvalds	  the IPX-HOWTO from <http://www.tldp.org/docs.html#howto>.
6241da177e4SLinus Torvalds
6251da177e4SLinus Torvalds	  You do not have to say Y here if you want your Linux box to act as a
6261da177e4SLinus Torvalds	  file *server* for Novell NetWare clients.
6271da177e4SLinus Torvalds
6281da177e4SLinus Torvalds	  General information about how to connect Linux, Windows machines and
6291da177e4SLinus Torvalds	  Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
6301da177e4SLinus Torvalds
6311da177e4SLinus Torvalds	  To compile this as a module, choose M here: the module will be called
6321da177e4SLinus Torvalds	  ncpfs.  Say N unless you are connected to a Novell network.
6331da177e4SLinus Torvalds
6341da177e4SLinus Torvaldssource "fs/ncpfs/Kconfig"
6351da177e4SLinus Torvalds
6361da177e4SLinus Torvaldsconfig CODA_FS
6371da177e4SLinus Torvalds	tristate "Coda file system support (advanced network fs)"
6381da177e4SLinus Torvalds	depends on INET
6391da177e4SLinus Torvalds	help
6401da177e4SLinus Torvalds	  Coda is an advanced network file system, similar to NFS in that it
6411da177e4SLinus Torvalds	  enables you to mount file systems of a remote server and access them
6421da177e4SLinus Torvalds	  with regular Unix commands as if they were sitting on your hard
6431da177e4SLinus Torvalds	  disk.  Coda has several advantages over NFS: support for
6441da177e4SLinus Torvalds	  disconnected operation (e.g. for laptops), read/write server
6451da177e4SLinus Torvalds	  replication, security model for authentication and encryption,
6461da177e4SLinus Torvalds	  persistent client caches and write back caching.
6471da177e4SLinus Torvalds
6481da177e4SLinus Torvalds	  If you say Y here, your Linux box will be able to act as a Coda
6491da177e4SLinus Torvalds	  *client*.  You will need user level code as well, both for the
6501da177e4SLinus Torvalds	  client and server.  Servers are currently user level, i.e. they need
6511da177e4SLinus Torvalds	  no kernel support.  Please read
6521da177e4SLinus Torvalds	  <file:Documentation/filesystems/coda.txt> and check out the Coda
6531da177e4SLinus Torvalds	  home page <http://www.coda.cs.cmu.edu/>.
6541da177e4SLinus Torvalds
6551da177e4SLinus Torvalds	  To compile the coda client support as a module, choose M here: the
6561da177e4SLinus Torvalds	  module will be called coda.
6571da177e4SLinus Torvalds
6581da177e4SLinus Torvaldsconfig AFS_FS
65964aaa4f8SDavid Howells	tristate "Andrew File System support (AFS) (EXPERIMENTAL)"
6601da177e4SLinus Torvalds	depends on INET && EXPERIMENTAL
66108e0e7c8SDavid Howells	select AF_RXRPC
6621da177e4SLinus Torvalds	help
6631da177e4SLinus Torvalds	  If you say Y here, you will get an experimental Andrew File System
6641da177e4SLinus Torvalds	  driver. It currently only supports unsecured read-only AFS access.
6651da177e4SLinus Torvalds
666cc2e2767SMatt LaPlante	  See <file:Documentation/filesystems/afs.txt> for more information.
6671da177e4SLinus Torvalds
6681da177e4SLinus Torvalds	  If unsure, say N.
6691da177e4SLinus Torvalds
67008e0e7c8SDavid Howellsconfig AFS_DEBUG
67108e0e7c8SDavid Howells	bool "AFS dynamic debugging"
67208e0e7c8SDavid Howells	depends on AFS_FS
67308e0e7c8SDavid Howells	help
67408e0e7c8SDavid Howells	  Say Y here to make runtime controllable debugging messages appear.
67508e0e7c8SDavid Howells
67608e0e7c8SDavid Howells	  See <file:Documentation/filesystems/afs.txt> for more information.
67708e0e7c8SDavid Howells
67808e0e7c8SDavid Howells	  If unsure, say N.
67908e0e7c8SDavid Howells
68093fa58cbSEric Van Hensbergenconfig 9P_FS
68193fa58cbSEric Van Hensbergen	tristate "Plan 9 Resource Sharing Support (9P2000) (Experimental)"
682bd238fb4SLatchesar Ionkov	depends on INET && NET_9P && EXPERIMENTAL
68393fa58cbSEric Van Hensbergen	help
68493fa58cbSEric Van Hensbergen	  If you say Y here, you will get experimental support for
68593fa58cbSEric Van Hensbergen	  Plan 9 resource sharing via the 9P2000 protocol.
68693fa58cbSEric Van Hensbergen
68793fa58cbSEric Van Hensbergen	  See <http://v9fs.sf.net> for more information.
68893fa58cbSEric Van Hensbergen
68993fa58cbSEric Van Hensbergen	  If unsure, say N.
69093fa58cbSEric Van Hensbergen
691ea0985adSJan Engelhardtendif # NETWORK_FILESYSTEMS
6921da177e4SLinus Torvalds
6939361401eSDavid Howellsif BLOCK
6941da177e4SLinus Torvaldsmenu "Partition Types"
6951da177e4SLinus Torvalds
6961da177e4SLinus Torvaldssource "fs/partitions/Kconfig"
6971da177e4SLinus Torvalds
6981da177e4SLinus Torvaldsendmenu
6999361401eSDavid Howellsendif
7001da177e4SLinus Torvalds
7011da177e4SLinus Torvaldssource "fs/nls/Kconfig"
702e7fd4179SDavid Teiglandsource "fs/dlm/Kconfig"
7031da177e4SLinus Torvalds
7041da177e4SLinus Torvaldsendmenu
705