xref: /linux/fs/Kconfig (revision 571f0a0bdeeb2d1692751b6c5df15dafb483c7ff)
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"
211*571f0a0bSAlexey Dobriyansource "fs/efs/Kconfig"
21231db6e9eSAlexey Dobriyansource "fs/jffs2/Kconfig"
2130d7eff87SArtem Bityutskiy# UBIFS File system configuration
2140d7eff87SArtem Bityutskiysource "fs/ubifs/Kconfig"
2150d7eff87SArtem Bityutskiy
2161da177e4SLinus Torvaldsconfig CRAMFS
2171da177e4SLinus Torvalds	tristate "Compressed ROM file system support (cramfs)"
2189361401eSDavid Howells	depends on BLOCK
2191da177e4SLinus Torvalds	select ZLIB_INFLATE
2201da177e4SLinus Torvalds	help
2211da177e4SLinus Torvalds	  Saying Y here includes support for CramFs (Compressed ROM File
2221da177e4SLinus Torvalds	  System).  CramFs is designed to be a simple, small, and compressed
2231da177e4SLinus Torvalds	  file system for ROM based embedded systems.  CramFs is read-only,
2241da177e4SLinus Torvalds	  limited to 256MB file systems (with 16MB files), and doesn't support
2251da177e4SLinus Torvalds	  16/32 bits uid/gid, hard links and timestamps.
2261da177e4SLinus Torvalds
2271da177e4SLinus Torvalds	  See <file:Documentation/filesystems/cramfs.txt> and
2281da177e4SLinus Torvalds	  <file:fs/cramfs/README> for further information.
2291da177e4SLinus Torvalds
2301da177e4SLinus Torvalds	  To compile this as a module, choose M here: the module will be called
2311da177e4SLinus Torvalds	  cramfs.  Note that the root file system (the one containing the
2321da177e4SLinus Torvalds	  directory /) cannot be compiled as a module.
2331da177e4SLinus Torvalds
2341da177e4SLinus Torvalds	  If unsure, say N.
2351da177e4SLinus Torvalds
2366ab5c1caSPhillip Lougherconfig SQUASHFS
2376ab5c1caSPhillip Lougher	tristate "SquashFS 4.0 - Squashed file system support"
2386ab5c1caSPhillip Lougher	depends on BLOCK
2396ab5c1caSPhillip Lougher	select ZLIB_INFLATE
2406ab5c1caSPhillip Lougher	help
2416ab5c1caSPhillip Lougher	  Saying Y here includes support for SquashFS 4.0 (a Compressed
2426ab5c1caSPhillip Lougher	  Read-Only File System).  Squashfs is a highly compressed read-only
2436ab5c1caSPhillip Lougher	  filesystem for Linux.  It uses zlib compression to compress both
2446ab5c1caSPhillip Lougher	  files, inodes and directories.  Inodes in the system are very small
2456ab5c1caSPhillip Lougher	  and all blocks are packed to minimise data overhead. Block sizes
2466ab5c1caSPhillip Lougher	  greater than 4K are supported up to a maximum of 1 Mbytes (default
2476ab5c1caSPhillip Lougher	  block size 128K).  SquashFS 4.0 supports 64 bit filesystems and files
2486ab5c1caSPhillip Lougher	  (larger than 4GB), full uid/gid information, hard links and
2496ab5c1caSPhillip Lougher	  timestamps.
2506ab5c1caSPhillip Lougher
2516ab5c1caSPhillip Lougher	  Squashfs is intended for general read-only filesystem use, for
2526ab5c1caSPhillip Lougher	  archival use (i.e. in cases where a .tar.gz file may be used), and in
2536ab5c1caSPhillip Lougher	  embedded systems where low overhead is needed.  Further information
2546ab5c1caSPhillip Lougher	  and tools are available from http://squashfs.sourceforge.net.
2556ab5c1caSPhillip Lougher
2566ab5c1caSPhillip Lougher	  If you want to compile this as a module ( = code which can be
2576ab5c1caSPhillip Lougher	  inserted in and removed from the running kernel whenever you want),
2586ab5c1caSPhillip Lougher	  say M here and read <file:Documentation/modules.txt>.  The module
2596ab5c1caSPhillip Lougher	  will be called squashfs.  Note that the root file system (the one
2606ab5c1caSPhillip Lougher	  containing the directory /) cannot be compiled as a module.
2616ab5c1caSPhillip Lougher
2626ab5c1caSPhillip Lougher	  If unsure, say N.
2636ab5c1caSPhillip Lougher
2646ab5c1caSPhillip Lougherconfig SQUASHFS_EMBEDDED
2656ab5c1caSPhillip Lougher
2666ab5c1caSPhillip Lougher	bool "Additional option for memory-constrained systems"
2676ab5c1caSPhillip Lougher	depends on SQUASHFS
2686ab5c1caSPhillip Lougher	default n
2696ab5c1caSPhillip Lougher	help
2706ab5c1caSPhillip Lougher	  Saying Y here allows you to specify cache size.
2716ab5c1caSPhillip Lougher
2726ab5c1caSPhillip Lougher	  If unsure, say N.
2736ab5c1caSPhillip Lougher
2746ab5c1caSPhillip Lougherconfig SQUASHFS_FRAGMENT_CACHE_SIZE
2756ab5c1caSPhillip Lougher	int "Number of fragments cached" if SQUASHFS_EMBEDDED
2766ab5c1caSPhillip Lougher	depends on SQUASHFS
2776ab5c1caSPhillip Lougher	default "3"
2786ab5c1caSPhillip Lougher	help
2796ab5c1caSPhillip Lougher	  By default SquashFS caches the last 3 fragments read from
2806ab5c1caSPhillip Lougher	  the filesystem.  Increasing this amount may mean SquashFS
2816ab5c1caSPhillip Lougher	  has to re-read fragments less often from disk, at the expense
2826ab5c1caSPhillip Lougher	  of extra system memory.  Decreasing this amount will mean
2836ab5c1caSPhillip Lougher	  SquashFS uses less memory at the expense of extra reads from disk.
2846ab5c1caSPhillip Lougher
2856ab5c1caSPhillip Lougher	  Note there must be at least one cached fragment.  Anything
2866ab5c1caSPhillip Lougher	  much more than three will probably not make much difference.
2876ab5c1caSPhillip Lougher
2881da177e4SLinus Torvaldsconfig VXFS_FS
2891da177e4SLinus Torvalds	tristate "FreeVxFS file system support (VERITAS VxFS(TM) compatible)"
2909361401eSDavid Howells	depends on BLOCK
2911da177e4SLinus Torvalds	help
2921da177e4SLinus Torvalds	  FreeVxFS is a file system driver that support the VERITAS VxFS(TM)
2931da177e4SLinus Torvalds	  file system format.  VERITAS VxFS(TM) is the standard file system
2941da177e4SLinus Torvalds	  of SCO UnixWare (and possibly others) and optionally available
2951da177e4SLinus Torvalds	  for Sunsoft Solaris, HP-UX and many other operating systems.
2961da177e4SLinus Torvalds	  Currently only readonly access is supported.
2971da177e4SLinus Torvalds
2981da177e4SLinus Torvalds	  NOTE: the file system type as used by mount(1), mount(2) and
2991da177e4SLinus Torvalds	  fstab(5) is 'vxfs' as it describes the file system format, not
3001da177e4SLinus Torvalds	  the actual driver.
3011da177e4SLinus Torvalds
3021da177e4SLinus Torvalds	  To compile this as a module, choose M here: the module will be
3031da177e4SLinus Torvalds	  called freevxfs.  If unsure, say N.
3041da177e4SLinus Torvalds
30525fad945SRandy Dunlapconfig MINIX_FS
30625fad945SRandy Dunlap	tristate "Minix file system support"
30725fad945SRandy Dunlap	depends on BLOCK
30825fad945SRandy Dunlap	help
30925fad945SRandy Dunlap	  Minix is a simple operating system used in many classes about OS's.
31025fad945SRandy Dunlap	  The minix file system (method to organize files on a hard disk
31125fad945SRandy Dunlap	  partition or a floppy disk) was the original file system for Linux,
31225fad945SRandy Dunlap	  but has been superseded by the second extended file system ext2fs.
31325fad945SRandy Dunlap	  You don't want to use the minix file system on your hard disk
31425fad945SRandy Dunlap	  because of certain built-in restrictions, but it is sometimes found
31525fad945SRandy Dunlap	  on older Linux floppy disks.  This option will enlarge your kernel
31625fad945SRandy Dunlap	  by about 28 KB. If unsure, say N.
31725fad945SRandy Dunlap
31825fad945SRandy Dunlap	  To compile this file system support as a module, choose M here: the
31925fad945SRandy Dunlap	  module will be called minix.  Note that the file system of your root
32025fad945SRandy Dunlap	  partition (the one containing the directory /) cannot be compiled as
32125fad945SRandy Dunlap	  a module.
32225fad945SRandy Dunlap
32363ca8ce2SBob Copelandconfig OMFS_FS
32463ca8ce2SBob Copeland	tristate "SonicBlue Optimized MPEG File System support"
32563ca8ce2SBob Copeland	depends on BLOCK
32663ca8ce2SBob Copeland	select CRC_ITU_T
32763ca8ce2SBob Copeland	help
32863ca8ce2SBob Copeland	  This is the proprietary file system used by the Rio Karma music
32963ca8ce2SBob Copeland	  player and ReplayTV DVR.  Despite the name, this filesystem is not
33063ca8ce2SBob Copeland	  more efficient than a standard FS for MPEG files, in fact likely
33163ca8ce2SBob Copeland	  the opposite is true.  Say Y if you have either of these devices
33263ca8ce2SBob Copeland	  and wish to mount its disk.
33363ca8ce2SBob Copeland
33463ca8ce2SBob Copeland	  To compile this file system support as a module, choose M here: the
33563ca8ce2SBob Copeland	  module will be called omfs.  If unsure, say N.
3361da177e4SLinus Torvalds
3371da177e4SLinus Torvaldsconfig HPFS_FS
3381da177e4SLinus Torvalds	tristate "OS/2 HPFS file system support"
3399361401eSDavid Howells	depends on BLOCK
3401da177e4SLinus Torvalds	help
3411da177e4SLinus Torvalds	  OS/2 is IBM's operating system for PC's, the same as Warp, and HPFS
3421da177e4SLinus Torvalds	  is the file system used for organizing files on OS/2 hard disk
3431da177e4SLinus Torvalds	  partitions. Say Y if you want to be able to read files from and
3441da177e4SLinus Torvalds	  write files to an OS/2 HPFS partition on your hard drive. OS/2
3451da177e4SLinus Torvalds	  floppies however are in regular MSDOS format, so you don't need this
3461da177e4SLinus Torvalds	  option in order to be able to read them. Read
3471da177e4SLinus Torvalds	  <file:Documentation/filesystems/hpfs.txt>.
3481da177e4SLinus Torvalds
3491da177e4SLinus Torvalds	  To compile this file system support as a module, choose M here: the
3501da177e4SLinus Torvalds	  module will be called hpfs.  If unsure, say N.
3511da177e4SLinus Torvalds
3521da177e4SLinus Torvalds
3531da177e4SLinus Torvaldsconfig QNX4FS_FS
3541da177e4SLinus Torvalds	tristate "QNX4 file system support (read only)"
3559361401eSDavid Howells	depends on BLOCK
3561da177e4SLinus Torvalds	help
3571da177e4SLinus Torvalds	  This is the file system used by the real-time operating systems
3581da177e4SLinus Torvalds	  QNX 4 and QNX 6 (the latter is also called QNX RTP).
3591da177e4SLinus Torvalds	  Further information is available at <http://www.qnx.com/>.
3601da177e4SLinus Torvalds	  Say Y if you intend to mount QNX hard disks or floppies.
3611da177e4SLinus Torvalds	  Unless you say Y to "QNX4FS read-write support" below, you will
3621da177e4SLinus Torvalds	  only be able to read these file systems.
3631da177e4SLinus Torvalds
3641da177e4SLinus Torvalds	  To compile this file system support as a module, choose M here: the
3651da177e4SLinus Torvalds	  module will be called qnx4.
3661da177e4SLinus Torvalds
3671da177e4SLinus Torvalds	  If you don't know whether you need it, then you don't need it:
3681da177e4SLinus Torvalds	  answer N.
3691da177e4SLinus Torvalds
3701da177e4SLinus Torvaldsconfig QNX4FS_RW
3711da177e4SLinus Torvalds	bool "QNX4FS write support (DANGEROUS)"
3721da177e4SLinus Torvalds	depends on QNX4FS_FS && EXPERIMENTAL && BROKEN
3731da177e4SLinus Torvalds	help
3741da177e4SLinus Torvalds	  Say Y if you want to test write support for QNX4 file systems.
3751da177e4SLinus Torvalds
3761da177e4SLinus Torvalds	  It's currently broken, so for now:
3771da177e4SLinus Torvalds	  answer N.
3781da177e4SLinus Torvalds
37925fad945SRandy Dunlapconfig ROMFS_FS
38025fad945SRandy Dunlap	tristate "ROM file system support"
38125fad945SRandy Dunlap	depends on BLOCK
38225fad945SRandy Dunlap	---help---
38325fad945SRandy Dunlap	  This is a very small read-only file system mainly intended for
38425fad945SRandy Dunlap	  initial ram disks of installation disks, but it could be used for
38525fad945SRandy Dunlap	  other read-only media as well.  Read
38625fad945SRandy Dunlap	  <file:Documentation/filesystems/romfs.txt> for details.
38725fad945SRandy Dunlap
38825fad945SRandy Dunlap	  To compile this file system support as a module, choose M here: the
38925fad945SRandy Dunlap	  module will be called romfs.  Note that the file system of your
39025fad945SRandy Dunlap	  root partition (the one containing the directory /) cannot be a
39125fad945SRandy Dunlap	  module.
39225fad945SRandy Dunlap
39325fad945SRandy Dunlap	  If you don't know whether you need it, then you don't need it:
39425fad945SRandy Dunlap	  answer N.
3951da177e4SLinus Torvalds
3961da177e4SLinus Torvalds
3971da177e4SLinus Torvaldsconfig SYSV_FS
3981da177e4SLinus Torvalds	tristate "System V/Xenix/V7/Coherent file system support"
3999361401eSDavid Howells	depends on BLOCK
4001da177e4SLinus Torvalds	help
4011da177e4SLinus Torvalds	  SCO, Xenix and Coherent are commercial Unix systems for Intel
4021da177e4SLinus Torvalds	  machines, and Version 7 was used on the DEC PDP-11. Saying Y
4031da177e4SLinus Torvalds	  here would allow you to read from their floppies and hard disk
4041da177e4SLinus Torvalds	  partitions.
4051da177e4SLinus Torvalds
4061da177e4SLinus Torvalds	  If you have floppies or hard disk partitions like that, it is likely
4071da177e4SLinus Torvalds	  that they contain binaries from those other Unix systems; in order
408cab00891SMatt LaPlante	  to run these binaries, you will want to install linux-abi which is
4091da177e4SLinus Torvalds	  a set of kernel modules that lets you run SCO, Xenix, Wyse,
4101da177e4SLinus Torvalds	  UnixWare, Dell Unix and System V programs under Linux.  It is
4111da177e4SLinus Torvalds	  available via FTP (user: ftp) from
4121da177e4SLinus Torvalds	  <ftp://ftp.openlinux.org/pub/people/hch/linux-abi/>).
4131da177e4SLinus Torvalds	  NOTE: that will work only for binaries from Intel-based systems;
4141da177e4SLinus Torvalds	  PDP ones will have to wait until somebody ports Linux to -11 ;-)
4151da177e4SLinus Torvalds
4161da177e4SLinus Torvalds	  If you only intend to mount files from some other Unix over the
4171da177e4SLinus Torvalds	  network using NFS, you don't need the System V file system support
4181da177e4SLinus Torvalds	  (but you need NFS file system support obviously).
4191da177e4SLinus Torvalds
4201da177e4SLinus Torvalds	  Note that this option is generally not needed for floppies, since a
4211da177e4SLinus Torvalds	  good portable way to transport files and directories between unixes
4221da177e4SLinus Torvalds	  (and even other operating systems) is given by the tar program ("man
4231da177e4SLinus Torvalds	  tar" or preferably "info tar").  Note also that this option has
4241da177e4SLinus Torvalds	  nothing whatsoever to do with the option "System V IPC". Read about
4251da177e4SLinus Torvalds	  the System V file system in
4261da177e4SLinus Torvalds	  <file:Documentation/filesystems/sysv-fs.txt>.
4271da177e4SLinus Torvalds	  Saying Y here will enlarge your kernel by about 27 KB.
4281da177e4SLinus Torvalds
4291da177e4SLinus Torvalds	  To compile this as a module, choose M here: the module will be called
4301da177e4SLinus Torvalds	  sysv.
4311da177e4SLinus Torvalds
4321da177e4SLinus Torvalds	  If you haven't heard about all of this before, it's safe to say N.
4331da177e4SLinus Torvalds
4341da177e4SLinus Torvalds
4351da177e4SLinus Torvaldsconfig UFS_FS
4361da177e4SLinus Torvalds	tristate "UFS file system support (read only)"
4379361401eSDavid Howells	depends on BLOCK
4381da177e4SLinus Torvalds	help
4391da177e4SLinus Torvalds	  BSD and derivate versions of Unix (such as SunOS, FreeBSD, NetBSD,
4401da177e4SLinus Torvalds	  OpenBSD and NeXTstep) use a file system called UFS. Some System V
4411da177e4SLinus Torvalds	  Unixes can create and mount hard disk partitions and diskettes using
4421da177e4SLinus Torvalds	  this file system as well. Saying Y here will allow you to read from
4431da177e4SLinus Torvalds	  these partitions; if you also want to write to them, say Y to the
4441da177e4SLinus Torvalds	  experimental "UFS file system write support", below. Please read the
4451da177e4SLinus Torvalds	  file <file:Documentation/filesystems/ufs.txt> for more information.
4461da177e4SLinus Torvalds
4471da177e4SLinus Torvalds          The recently released UFS2 variant (used in FreeBSD 5.x) is
4481da177e4SLinus Torvalds          READ-ONLY supported.
4491da177e4SLinus Torvalds
4501da177e4SLinus Torvalds	  Note that this option is generally not needed for floppies, since a
4511da177e4SLinus Torvalds	  good portable way to transport files and directories between unixes
4521da177e4SLinus Torvalds	  (and even other operating systems) is given by the tar program ("man
4531da177e4SLinus Torvalds	  tar" or preferably "info tar").
4541da177e4SLinus Torvalds
4551da177e4SLinus Torvalds	  When accessing NeXTstep files, you may need to convert them from the
4561da177e4SLinus Torvalds	  NeXT character set to the Latin1 character set; use the program
4571da177e4SLinus Torvalds	  recode ("info recode") for this purpose.
4581da177e4SLinus Torvalds
4591da177e4SLinus Torvalds	  To compile the UFS file system support as a module, choose M here: the
4601da177e4SLinus Torvalds	  module will be called ufs.
4611da177e4SLinus Torvalds
4621da177e4SLinus Torvalds	  If you haven't heard about all of this before, it's safe to say N.
4631da177e4SLinus Torvalds
4641da177e4SLinus Torvaldsconfig UFS_FS_WRITE
4651da177e4SLinus Torvalds	bool "UFS file system write support (DANGEROUS)"
4665afb3145SEvgeniy Dushistov	depends on UFS_FS && EXPERIMENTAL
4671da177e4SLinus Torvalds	help
4681da177e4SLinus Torvalds	  Say Y here if you want to try writing to UFS partitions. This is
4691da177e4SLinus Torvalds	  experimental, so you should back up your UFS partitions beforehand.
4701da177e4SLinus Torvalds
471abf5d15fSEvgeniy Dushistovconfig UFS_DEBUG
472abf5d15fSEvgeniy Dushistov	bool "UFS debugging"
473abf5d15fSEvgeniy Dushistov	depends on UFS_FS
474abf5d15fSEvgeniy Dushistov	help
475abf5d15fSEvgeniy Dushistov	  If you are experiencing any problems with the UFS filesystem, say
476abf5d15fSEvgeniy Dushistov	  Y here.  This will result in _many_ additional debugging messages to be
477abf5d15fSEvgeniy Dushistov	  written to the system log.
478abf5d15fSEvgeniy Dushistov
47967ec7d3aSRandy Dunlapendif # MISC_FILESYSTEMS
4801da177e4SLinus Torvalds
481ea0985adSJan Engelhardtmenuconfig NETWORK_FILESYSTEMS
482ea0985adSJan Engelhardt	bool "Network File Systems"
483ea0985adSJan Engelhardt	default y
4841da177e4SLinus Torvalds	depends on NET
485ea0985adSJan Engelhardt	---help---
486ea0985adSJan Engelhardt	  Say Y here to get to see options for network filesystems and
487ea0985adSJan Engelhardt	  filesystem-related networking code, such as NFS daemon and
488ea0985adSJan Engelhardt	  RPCSEC security modules.
4896fb1bc10SChuck Lever
490ea0985adSJan Engelhardt	  This option alone does not add any kernel code.
491ea0985adSJan Engelhardt
492ea0985adSJan Engelhardt	  If you say N, all options in this submenu will be skipped and
493ea0985adSJan Engelhardt	  disabled; if unsure, say Y here.
494ea0985adSJan Engelhardt
495ea0985adSJan Engelhardtif NETWORK_FILESYSTEMS
4961da177e4SLinus Torvalds
4971da177e4SLinus Torvaldsconfig NFS_FS
4986fb1bc10SChuck Lever	tristate "NFS client support"
4991da177e4SLinus Torvalds	depends on INET
5001da177e4SLinus Torvalds	select LOCKD
5011da177e4SLinus Torvalds	select SUNRPC
502b7fa0554SAndreas Gruenbacher	select NFS_ACL_SUPPORT if NFS_V3_ACL
5031da177e4SLinus Torvalds	help
5046fb1bc10SChuck Lever	  Choose Y here if you want to access files residing on other
5056fb1bc10SChuck Lever	  computers using Sun's Network File System protocol.  To compile
5066fb1bc10SChuck Lever	  this file system support as a module, choose M here: the module
5076fb1bc10SChuck Lever	  will be called nfs.
5081da177e4SLinus Torvalds
5096fb1bc10SChuck Lever	  To mount file systems exported by NFS servers, you also need to
5106fb1bc10SChuck Lever	  install the user space mount.nfs command which can be found in
5116fb1bc10SChuck Lever	  the Linux nfs-utils package, available from http://linux-nfs.org/.
5126fb1bc10SChuck Lever	  Information about using the mount command is available in the
5136fb1bc10SChuck Lever	  mount(8) man page.  More detail about the Linux NFS client
5146fb1bc10SChuck Lever	  implementation is available via the nfs(5) man page.
5151da177e4SLinus Torvalds
5166fb1bc10SChuck Lever	  Below you can choose which versions of the NFS protocol are
5176fb1bc10SChuck Lever	  available in the kernel to mount NFS servers.  Support for NFS
5186fb1bc10SChuck Lever	  version 2 (RFC 1094) is always available when NFS_FS is selected.
5191da177e4SLinus Torvalds
5206fb1bc10SChuck Lever	  To configure a system which mounts its root file system via NFS
5216fb1bc10SChuck Lever	  at boot time, say Y here, select "Kernel level IP
5226fb1bc10SChuck Lever	  autoconfiguration" in the NETWORK menu, and select "Root file
5236fb1bc10SChuck Lever	  system on NFS" below.  You cannot compile this file system as a
5246fb1bc10SChuck Lever	  module in this case.
5251da177e4SLinus Torvalds
5266fb1bc10SChuck Lever	  If unsure, say N.
5271da177e4SLinus Torvalds
5281da177e4SLinus Torvaldsconfig NFS_V3
5296fb1bc10SChuck Lever	bool "NFS client support for NFS version 3"
5301da177e4SLinus Torvalds	depends on NFS_FS
5311da177e4SLinus Torvalds	help
5326fb1bc10SChuck Lever	  This option enables support for version 3 of the NFS protocol
5336fb1bc10SChuck Lever	  (RFC 1813) in the kernel's NFS client.
5341da177e4SLinus Torvalds
5351da177e4SLinus Torvalds	  If unsure, say Y.
5361da177e4SLinus Torvalds
537b7fa0554SAndreas Gruenbacherconfig NFS_V3_ACL
5386fb1bc10SChuck Lever	bool "NFS client support for the NFSv3 ACL protocol extension"
539b7fa0554SAndreas Gruenbacher	depends on NFS_V3
540b7fa0554SAndreas Gruenbacher	help
5416fb1bc10SChuck Lever	  Some NFS servers support an auxiliary NFSv3 ACL protocol that
5426fb1bc10SChuck Lever	  Sun added to Solaris but never became an official part of the
5436fb1bc10SChuck Lever	  NFS version 3 protocol.  This protocol extension allows
5446fb1bc10SChuck Lever	  applications on NFS clients to manipulate POSIX Access Control
5456fb1bc10SChuck Lever	  Lists on files residing on NFS servers.  NFS servers enforce
5466fb1bc10SChuck Lever	  ACLs on local files whether this protocol is available or not.
5476fb1bc10SChuck Lever
5486fb1bc10SChuck Lever	  Choose Y here if your NFS server supports the Solaris NFSv3 ACL
5496fb1bc10SChuck Lever	  protocol extension and you want your NFS client to allow
5506fb1bc10SChuck Lever	  applications to access and modify ACLs on files on the server.
5516fb1bc10SChuck Lever
5526fb1bc10SChuck Lever	  Most NFS servers don't support the Solaris NFSv3 ACL protocol
5536fb1bc10SChuck Lever	  extension.  You can choose N here or specify the "noacl" mount
5546fb1bc10SChuck Lever	  option to prevent your NFS client from trying to use the NFSv3
5556fb1bc10SChuck Lever	  ACL protocol.
556b7fa0554SAndreas Gruenbacher
557b7fa0554SAndreas Gruenbacher	  If unsure, say N.
558b7fa0554SAndreas Gruenbacher
5591da177e4SLinus Torvaldsconfig NFS_V4
5606fb1bc10SChuck Lever	bool "NFS client support for NFS version 4 (EXPERIMENTAL)"
5611da177e4SLinus Torvalds	depends on NFS_FS && EXPERIMENTAL
5621da177e4SLinus Torvalds	select RPCSEC_GSS_KRB5
5631da177e4SLinus Torvalds	help
5646fb1bc10SChuck Lever	  This option enables support for version 4 of the NFS protocol
5656fb1bc10SChuck Lever	  (RFC 3530) in the kernel's NFS client.
5661da177e4SLinus Torvalds
5676fb1bc10SChuck Lever	  To mount NFS servers using NFSv4, you also need to install user
5686fb1bc10SChuck Lever	  space programs which can be found in the Linux nfs-utils package,
5696fb1bc10SChuck Lever	  available from http://linux-nfs.org/.
5701da177e4SLinus Torvalds
5711da177e4SLinus Torvalds	  If unsure, say N.
5721da177e4SLinus Torvalds
5736fb1bc10SChuck Leverconfig ROOT_NFS
5746fb1bc10SChuck Lever	bool "Root file system on NFS"
5756fb1bc10SChuck Lever	depends on NFS_FS=y && IP_PNP
5766fb1bc10SChuck Lever	help
5776fb1bc10SChuck Lever	  If you want your system to mount its root file system via NFS,
5786fb1bc10SChuck Lever	  choose Y here.  This is common practice for managing systems
5796fb1bc10SChuck Lever	  without local permanent storage.  For details, read
5806fb1bc10SChuck Lever	  <file:Documentation/filesystems/nfsroot.txt>.
5816fb1bc10SChuck Lever
5826fb1bc10SChuck Lever	  Most people say N here.
5836fb1bc10SChuck Lever
5841da177e4SLinus Torvaldsconfig NFSD
5851da177e4SLinus Torvalds	tristate "NFS server support"
5861da177e4SLinus Torvalds	depends on INET
5871da177e4SLinus Torvalds	select LOCKD
5881da177e4SLinus Torvalds	select SUNRPC
5891da177e4SLinus Torvalds	select EXPORTFS
590f05e15b5SHerbert Xu	select NFS_ACL_SUPPORT if NFSD_V2_ACL
5911da177e4SLinus Torvalds	help
592d24455b5SChuck Lever	  Choose Y here if you want to allow other computers to access
593d24455b5SChuck Lever	  files residing on this system using Sun's Network File System
594d24455b5SChuck Lever	  protocol.  To compile the NFS server support as a module,
595d24455b5SChuck Lever	  choose M here: the module will be called nfsd.
5961da177e4SLinus Torvalds
597d24455b5SChuck Lever	  You may choose to use a user-space NFS server instead, in which
598d24455b5SChuck Lever	  case you can choose N here.
5991da177e4SLinus Torvalds
600d24455b5SChuck Lever	  To export local file systems using NFS, you also need to install
601d24455b5SChuck Lever	  user space programs which can be found in the Linux nfs-utils
602d24455b5SChuck Lever	  package, available from http://linux-nfs.org/.  More detail about
603d24455b5SChuck Lever	  the Linux NFS server implementation is available via the
604d24455b5SChuck Lever	  exports(5) man page.
6051da177e4SLinus Torvalds
606d24455b5SChuck Lever	  Below you can choose which versions of the NFS protocol are
607d24455b5SChuck Lever	  available to clients mounting the NFS server on this system.
608d24455b5SChuck Lever	  Support for NFS version 2 (RFC 1094) is always available when
609d24455b5SChuck Lever	  CONFIG_NFSD is selected.
6101da177e4SLinus Torvalds
611d24455b5SChuck Lever	  If unsure, say N.
6121da177e4SLinus Torvalds
613a257cdd0SAndreas Gruenbacherconfig NFSD_V2_ACL
614a257cdd0SAndreas Gruenbacher	bool
615a257cdd0SAndreas Gruenbacher	depends on NFSD
616a257cdd0SAndreas Gruenbacher
6171da177e4SLinus Torvaldsconfig NFSD_V3
618d24455b5SChuck Lever	bool "NFS server support for NFS version 3"
6191da177e4SLinus Torvalds	depends on NFSD
6201da177e4SLinus Torvalds	help
621d24455b5SChuck Lever	  This option enables support in your system's NFS server for
622d24455b5SChuck Lever	  version 3 of the NFS protocol (RFC 1813).
623d24455b5SChuck Lever
624d24455b5SChuck Lever	  If unsure, say Y.
6251da177e4SLinus Torvalds
626a257cdd0SAndreas Gruenbacherconfig NFSD_V3_ACL
627d24455b5SChuck Lever	bool "NFS server support for the NFSv3 ACL protocol extension"
628a257cdd0SAndreas Gruenbacher	depends on NFSD_V3
62978dd0992SChuck Lever	select NFSD_V2_ACL
630a257cdd0SAndreas Gruenbacher	help
631d24455b5SChuck Lever	  Solaris NFS servers support an auxiliary NFSv3 ACL protocol that
632d24455b5SChuck Lever	  never became an official part of the NFS version 3 protocol.
633d24455b5SChuck Lever	  This protocol extension allows applications on NFS clients to
634d24455b5SChuck Lever	  manipulate POSIX Access Control Lists on files residing on NFS
635d24455b5SChuck Lever	  servers.  NFS servers enforce POSIX ACLs on local files whether
636d24455b5SChuck Lever	  this protocol is available or not.
637d24455b5SChuck Lever
638d24455b5SChuck Lever	  This option enables support in your system's NFS server for the
639d24455b5SChuck Lever	  NFSv3 ACL protocol extension allowing NFS clients to manipulate
640d24455b5SChuck Lever	  POSIX ACLs on files exported by your system's NFS server.  NFS
641d24455b5SChuck Lever	  clients which support the Solaris NFSv3 ACL protocol can then
642d24455b5SChuck Lever	  access and modify ACLs on your NFS server.
643d24455b5SChuck Lever
644d24455b5SChuck Lever	  To store ACLs on your NFS server, you also need to enable ACL-
645d24455b5SChuck Lever	  related CONFIG options for your local file systems of choice.
646d24455b5SChuck Lever
647d24455b5SChuck Lever	  If unsure, say N.
648a257cdd0SAndreas Gruenbacher
6491da177e4SLinus Torvaldsconfig NFSD_V4
650d24455b5SChuck Lever	bool "NFS server support for NFS version 4 (EXPERIMENTAL)"
6511a448fdbSChuck Lever	depends on NFSD && PROC_FS && EXPERIMENTAL
6521a448fdbSChuck Lever	select NFSD_V3
65389206955SChuck Lever	select FS_POSIX_ACL
65442ed95c4SJ. Bruce Fields	select RPCSEC_GSS_KRB5
6551da177e4SLinus Torvalds	help
656d24455b5SChuck Lever	  This option enables support in your system's NFS server for
657d24455b5SChuck Lever	  version 4 of the NFS protocol (RFC 3530).
658d24455b5SChuck Lever
659d24455b5SChuck Lever	  To export files using NFSv4, you need to install additional user
660d24455b5SChuck Lever	  space programs which can be found in the Linux nfs-utils package,
661d24455b5SChuck Lever	  available from http://linux-nfs.org/.
662d24455b5SChuck Lever
6631da177e4SLinus Torvalds	  If unsure, say N.
6641da177e4SLinus Torvalds
6651da177e4SLinus Torvaldsconfig LOCKD
6661da177e4SLinus Torvalds	tristate
6671da177e4SLinus Torvalds
6681da177e4SLinus Torvaldsconfig LOCKD_V4
6691da177e4SLinus Torvalds	bool
6701da177e4SLinus Torvalds	depends on NFSD_V3 || NFS_V3
6711da177e4SLinus Torvalds	default y
6721da177e4SLinus Torvalds
6731da177e4SLinus Torvaldsconfig EXPORTFS
6741da177e4SLinus Torvalds	tristate
6751da177e4SLinus Torvalds
676a257cdd0SAndreas Gruenbacherconfig NFS_ACL_SUPPORT
677a257cdd0SAndreas Gruenbacher	tristate
678a257cdd0SAndreas Gruenbacher	select FS_POSIX_ACL
679a257cdd0SAndreas Gruenbacher
680a257cdd0SAndreas Gruenbacherconfig NFS_COMMON
681a257cdd0SAndreas Gruenbacher	bool
682a257cdd0SAndreas Gruenbacher	depends on NFSD || NFS_FS
683a257cdd0SAndreas Gruenbacher	default y
684a257cdd0SAndreas Gruenbacher
6851da177e4SLinus Torvaldsconfig SUNRPC
6861da177e4SLinus Torvalds	tristate
6871da177e4SLinus Torvalds
6881da177e4SLinus Torvaldsconfig SUNRPC_GSS
6891da177e4SLinus Torvalds	tristate
6901da177e4SLinus Torvalds
691c3a57ed7S\"Talpey, Thomas\config SUNRPC_XPRT_RDMA
6923211e4ebSJames Lentini	tristate
693113632d0S\"Talpey, Thomas\	depends on SUNRPC && INFINIBAND && EXPERIMENTAL
6943211e4ebSJames Lentini	default SUNRPC && INFINIBAND
695327a299dSChuck Lever	help
696327a299dSChuck Lever	  This option enables an RPC client transport capability that
697327a299dSChuck Lever	  allows the NFS client to mount servers via an RDMA-enabled
698327a299dSChuck Lever	  transport.
699327a299dSChuck Lever
700327a299dSChuck Lever	  To compile RPC client RDMA transport support as a module,
701327a299dSChuck Lever	  choose M here: the module will be called xprtrdma.
702327a299dSChuck Lever
703327a299dSChuck Lever	  If unsure, say N.
704c3a57ed7S\"Talpey, Thomas\
705a26cfad6SChuck Leverconfig SUNRPC_REGISTER_V4
706a26cfad6SChuck Lever	bool "Register local RPC services via rpcbind v4 (EXPERIMENTAL)"
707a26cfad6SChuck Lever	depends on SUNRPC && EXPERIMENTAL
708a26cfad6SChuck Lever	default n
709a26cfad6SChuck Lever	help
710a26cfad6SChuck Lever	  Sun added support for registering RPC services at an IPv6
711a26cfad6SChuck Lever	  address by creating two new versions of the rpcbind protocol
712a26cfad6SChuck Lever	  (RFC 1833).
713a26cfad6SChuck Lever
714a26cfad6SChuck Lever	  This option enables support in the kernel RPC server for
715a26cfad6SChuck Lever	  registering kernel RPC services via version 4 of the rpcbind
716a26cfad6SChuck Lever	  protocol.  If you enable this option, you must run a portmapper
717a26cfad6SChuck Lever	  daemon that supports rpcbind protocol version 4.
718a26cfad6SChuck Lever
719a26cfad6SChuck Lever	  Serving NFS over IPv6 from knfsd (the kernel's NFS server)
720a26cfad6SChuck Lever	  requires that you enable this option and use a portmapper that
721a26cfad6SChuck Lever	  supports rpcbind version 4.
722a26cfad6SChuck Lever
723a26cfad6SChuck Lever	  If unsure, say N to get traditional behavior (register kernel
724a26cfad6SChuck Lever	  RPC services using only rpcbind version 2).  Distributions
725a26cfad6SChuck Lever	  using the legacy Linux portmapper daemon must say N here.
726a26cfad6SChuck Lever
7271da177e4SLinus Torvaldsconfig RPCSEC_GSS_KRB5
7281da177e4SLinus Torvalds	tristate "Secure RPC: Kerberos V mechanism (EXPERIMENTAL)"
7291da177e4SLinus Torvalds	depends on SUNRPC && EXPERIMENTAL
7301da177e4SLinus Torvalds	select SUNRPC_GSS
7311da177e4SLinus Torvalds	select CRYPTO
7321da177e4SLinus Torvalds	select CRYPTO_MD5
7331da177e4SLinus Torvalds	select CRYPTO_DES
734bcbaecbbSPatrick McHardy	select CRYPTO_CBC
7351da177e4SLinus Torvalds	help
736327a299dSChuck Lever	  Choose Y here to enable Secure RPC using the Kerberos version 5
737327a299dSChuck Lever	  GSS-API mechanism (RFC 1964).
7381da177e4SLinus Torvalds
739327a299dSChuck Lever	  Secure RPC calls with Kerberos require an auxiliary user-space
740327a299dSChuck Lever	  daemon which may be found in the Linux nfs-utils package
741327a299dSChuck Lever	  available from http://linux-nfs.org/.  In addition, user-space
742327a299dSChuck Lever	  Kerberos support should be installed.
7431da177e4SLinus Torvalds
7441da177e4SLinus Torvalds	  If unsure, say N.
7451da177e4SLinus Torvalds
7461da177e4SLinus Torvaldsconfig RPCSEC_GSS_SPKM3
7471da177e4SLinus Torvalds	tristate "Secure RPC: SPKM3 mechanism (EXPERIMENTAL)"
7481da177e4SLinus Torvalds	depends on SUNRPC && EXPERIMENTAL
7491da177e4SLinus Torvalds	select SUNRPC_GSS
7501da177e4SLinus Torvalds	select CRYPTO
7511da177e4SLinus Torvalds	select CRYPTO_MD5
7521da177e4SLinus Torvalds	select CRYPTO_DES
753df6db302SJ. Bruce Fields	select CRYPTO_CAST5
754bcbaecbbSPatrick McHardy	select CRYPTO_CBC
7551da177e4SLinus Torvalds	help
756327a299dSChuck Lever	  Choose Y here to enable Secure RPC using the SPKM3 public key
757327a299dSChuck Lever	  GSS-API mechansim (RFC 2025).
7581da177e4SLinus Torvalds
759327a299dSChuck Lever	  Secure RPC calls with SPKM3 require an auxiliary userspace
760327a299dSChuck Lever	  daemon which may be found in the Linux nfs-utils package
761327a299dSChuck Lever	  available from http://linux-nfs.org/.
7621da177e4SLinus Torvalds
7631da177e4SLinus Torvalds	  If unsure, say N.
7641da177e4SLinus Torvalds
7651da177e4SLinus Torvaldsconfig SMB_FS
766c7736339SAndrew Morton	tristate "SMB file system support (OBSOLETE, please use CIFS)"
7671da177e4SLinus Torvalds	depends on INET
7681da177e4SLinus Torvalds	select NLS
7691da177e4SLinus Torvalds	help
7701da177e4SLinus Torvalds	  SMB (Server Message Block) is the protocol Windows for Workgroups
7711da177e4SLinus Torvalds	  (WfW), Windows 95/98, Windows NT and OS/2 Lan Manager use to share
7721da177e4SLinus Torvalds	  files and printers over local networks.  Saying Y here allows you to
7731da177e4SLinus Torvalds	  mount their file systems (often called "shares" in this context) and
7741da177e4SLinus Torvalds	  access them just like any other Unix directory.  Currently, this
7751da177e4SLinus Torvalds	  works only if the Windows machines use TCP/IP as the underlying
7761da177e4SLinus Torvalds	  transport protocol, and not NetBEUI.  For details, read
7771da177e4SLinus Torvalds	  <file:Documentation/filesystems/smbfs.txt> and the SMB-HOWTO,
7781da177e4SLinus Torvalds	  available from <http://www.tldp.org/docs.html#howto>.
7791da177e4SLinus Torvalds
7801da177e4SLinus Torvalds	  Note: if you just want your box to act as an SMB *server* and make
7811da177e4SLinus Torvalds	  files and printing services available to Windows clients (which need
7821da177e4SLinus Torvalds	  to have a TCP/IP stack), you don't need to say Y here; you can use
7831da177e4SLinus Torvalds	  the program SAMBA (available from <ftp://ftp.samba.org/pub/samba/>)
7841da177e4SLinus Torvalds	  for that.
7851da177e4SLinus Torvalds
7861da177e4SLinus Torvalds	  General information about how to connect Linux, Windows machines and
7871da177e4SLinus Torvalds	  Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
7881da177e4SLinus Torvalds
789c7736339SAndrew Morton	  To compile the SMB support as a module, choose M here:
790c7736339SAndrew Morton	  the module will be called smbfs.  Most people say N, however.
7911da177e4SLinus Torvalds
7921da177e4SLinus Torvaldsconfig SMB_NLS_DEFAULT
7931da177e4SLinus Torvalds	bool "Use a default NLS"
7941da177e4SLinus Torvalds	depends on SMB_FS
7951da177e4SLinus Torvalds	help
7961da177e4SLinus Torvalds	  Enabling this will make smbfs use nls translations by default. You
7971da177e4SLinus Torvalds	  need to specify the local charset (CONFIG_NLS_DEFAULT) in the nls
7981da177e4SLinus Torvalds	  settings and you need to give the default nls for the SMB server as
7991da177e4SLinus Torvalds	  CONFIG_SMB_NLS_REMOTE.
8001da177e4SLinus Torvalds
8011da177e4SLinus Torvalds	  The nls settings can be changed at mount time, if your smbmount
8021da177e4SLinus Torvalds	  supports that, using the codepage and iocharset parameters.
8031da177e4SLinus Torvalds
8041da177e4SLinus Torvalds	  smbmount from samba 2.2.0 or later supports this.
8051da177e4SLinus Torvalds
8061da177e4SLinus Torvaldsconfig SMB_NLS_REMOTE
8071da177e4SLinus Torvalds	string "Default Remote NLS Option"
8081da177e4SLinus Torvalds	depends on SMB_NLS_DEFAULT
8091da177e4SLinus Torvalds	default "cp437"
8101da177e4SLinus Torvalds	help
8111da177e4SLinus Torvalds	  This setting allows you to specify a default value for which
8121da177e4SLinus Torvalds	  codepage the server uses. If this field is left blank no
8131da177e4SLinus Torvalds	  translations will be done by default. The local codepage/charset
8141da177e4SLinus Torvalds	  default to CONFIG_NLS_DEFAULT.
8151da177e4SLinus Torvalds
8161da177e4SLinus Torvalds	  The nls settings can be changed at mount time, if your smbmount
8171da177e4SLinus Torvalds	  supports that, using the codepage and iocharset parameters.
8181da177e4SLinus Torvalds
8191da177e4SLinus Torvalds	  smbmount from samba 2.2.0 or later supports this.
8201da177e4SLinus Torvalds
821bb26b963SAlexey Dobriyansource "fs/cifs/Kconfig"
8226103335dSSteve French
8231da177e4SLinus Torvaldsconfig NCP_FS
8241da177e4SLinus Torvalds	tristate "NCP file system support (to mount NetWare volumes)"
8251da177e4SLinus Torvalds	depends on IPX!=n || INET
8261da177e4SLinus Torvalds	help
8271da177e4SLinus Torvalds	  NCP (NetWare Core Protocol) is a protocol that runs over IPX and is
8281da177e4SLinus Torvalds	  used by Novell NetWare clients to talk to file servers.  It is to
8291da177e4SLinus Torvalds	  IPX what NFS is to TCP/IP, if that helps.  Saying Y here allows you
8301da177e4SLinus Torvalds	  to mount NetWare file server volumes and to access them just like
8311da177e4SLinus Torvalds	  any other Unix directory.  For details, please read the file
8321da177e4SLinus Torvalds	  <file:Documentation/filesystems/ncpfs.txt> in the kernel source and
8331da177e4SLinus Torvalds	  the IPX-HOWTO from <http://www.tldp.org/docs.html#howto>.
8341da177e4SLinus Torvalds
8351da177e4SLinus Torvalds	  You do not have to say Y here if you want your Linux box to act as a
8361da177e4SLinus Torvalds	  file *server* for Novell NetWare clients.
8371da177e4SLinus Torvalds
8381da177e4SLinus Torvalds	  General information about how to connect Linux, Windows machines and
8391da177e4SLinus Torvalds	  Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
8401da177e4SLinus Torvalds
8411da177e4SLinus Torvalds	  To compile this as a module, choose M here: the module will be called
8421da177e4SLinus Torvalds	  ncpfs.  Say N unless you are connected to a Novell network.
8431da177e4SLinus Torvalds
8441da177e4SLinus Torvaldssource "fs/ncpfs/Kconfig"
8451da177e4SLinus Torvalds
8461da177e4SLinus Torvaldsconfig CODA_FS
8471da177e4SLinus Torvalds	tristate "Coda file system support (advanced network fs)"
8481da177e4SLinus Torvalds	depends on INET
8491da177e4SLinus Torvalds	help
8501da177e4SLinus Torvalds	  Coda is an advanced network file system, similar to NFS in that it
8511da177e4SLinus Torvalds	  enables you to mount file systems of a remote server and access them
8521da177e4SLinus Torvalds	  with regular Unix commands as if they were sitting on your hard
8531da177e4SLinus Torvalds	  disk.  Coda has several advantages over NFS: support for
8541da177e4SLinus Torvalds	  disconnected operation (e.g. for laptops), read/write server
8551da177e4SLinus Torvalds	  replication, security model for authentication and encryption,
8561da177e4SLinus Torvalds	  persistent client caches and write back caching.
8571da177e4SLinus Torvalds
8581da177e4SLinus Torvalds	  If you say Y here, your Linux box will be able to act as a Coda
8591da177e4SLinus Torvalds	  *client*.  You will need user level code as well, both for the
8601da177e4SLinus Torvalds	  client and server.  Servers are currently user level, i.e. they need
8611da177e4SLinus Torvalds	  no kernel support.  Please read
8621da177e4SLinus Torvalds	  <file:Documentation/filesystems/coda.txt> and check out the Coda
8631da177e4SLinus Torvalds	  home page <http://www.coda.cs.cmu.edu/>.
8641da177e4SLinus Torvalds
8651da177e4SLinus Torvalds	  To compile the coda client support as a module, choose M here: the
8661da177e4SLinus Torvalds	  module will be called coda.
8671da177e4SLinus Torvalds
8681da177e4SLinus Torvaldsconfig AFS_FS
86964aaa4f8SDavid Howells	tristate "Andrew File System support (AFS) (EXPERIMENTAL)"
8701da177e4SLinus Torvalds	depends on INET && EXPERIMENTAL
87108e0e7c8SDavid Howells	select AF_RXRPC
8721da177e4SLinus Torvalds	help
8731da177e4SLinus Torvalds	  If you say Y here, you will get an experimental Andrew File System
8741da177e4SLinus Torvalds	  driver. It currently only supports unsecured read-only AFS access.
8751da177e4SLinus Torvalds
876cc2e2767SMatt LaPlante	  See <file:Documentation/filesystems/afs.txt> for more information.
8771da177e4SLinus Torvalds
8781da177e4SLinus Torvalds	  If unsure, say N.
8791da177e4SLinus Torvalds
88008e0e7c8SDavid Howellsconfig AFS_DEBUG
88108e0e7c8SDavid Howells	bool "AFS dynamic debugging"
88208e0e7c8SDavid Howells	depends on AFS_FS
88308e0e7c8SDavid Howells	help
88408e0e7c8SDavid Howells	  Say Y here to make runtime controllable debugging messages appear.
88508e0e7c8SDavid Howells
88608e0e7c8SDavid Howells	  See <file:Documentation/filesystems/afs.txt> for more information.
88708e0e7c8SDavid Howells
88808e0e7c8SDavid Howells	  If unsure, say N.
88908e0e7c8SDavid Howells
89093fa58cbSEric Van Hensbergenconfig 9P_FS
89193fa58cbSEric Van Hensbergen	tristate "Plan 9 Resource Sharing Support (9P2000) (Experimental)"
892bd238fb4SLatchesar Ionkov	depends on INET && NET_9P && EXPERIMENTAL
89393fa58cbSEric Van Hensbergen	help
89493fa58cbSEric Van Hensbergen	  If you say Y here, you will get experimental support for
89593fa58cbSEric Van Hensbergen	  Plan 9 resource sharing via the 9P2000 protocol.
89693fa58cbSEric Van Hensbergen
89793fa58cbSEric Van Hensbergen	  See <http://v9fs.sf.net> for more information.
89893fa58cbSEric Van Hensbergen
89993fa58cbSEric Van Hensbergen	  If unsure, say N.
90093fa58cbSEric Van Hensbergen
901ea0985adSJan Engelhardtendif # NETWORK_FILESYSTEMS
9021da177e4SLinus Torvalds
9039361401eSDavid Howellsif BLOCK
9041da177e4SLinus Torvaldsmenu "Partition Types"
9051da177e4SLinus Torvalds
9061da177e4SLinus Torvaldssource "fs/partitions/Kconfig"
9071da177e4SLinus Torvalds
9081da177e4SLinus Torvaldsendmenu
9099361401eSDavid Howellsendif
9101da177e4SLinus Torvalds
9111da177e4SLinus Torvaldssource "fs/nls/Kconfig"
912e7fd4179SDavid Teiglandsource "fs/dlm/Kconfig"
9131da177e4SLinus Torvalds
9141da177e4SLinus Torvaldsendmenu
915