Kconfig 53 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522
  1. #
  2. # File system configuration
  3. #
  4. menu "File systems"
  5. if BLOCK
  6. source "fs/ext2/Kconfig"
  7. source "fs/ext3/Kconfig"
  8. source "fs/ext4/Kconfig"
  9. config FS_XIP
  10. # execute in place
  11. bool
  12. depends on EXT2_FS_XIP
  13. default y
  14. source "fs/jbd/Kconfig"
  15. source "fs/jbd2/Kconfig"
  16. config FS_MBCACHE
  17. # Meta block cache for Extended Attributes (ext2/ext3/ext4)
  18. tristate
  19. default y if EXT2_FS=y && EXT2_FS_XATTR
  20. default y if EXT3_FS=y && EXT3_FS_XATTR
  21. default y if EXT4_FS=y && EXT4_FS_XATTR
  22. default m if EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR
  23. config REISERFS_FS
  24. tristate "Reiserfs support"
  25. help
  26. Stores not just filenames but the files themselves in a balanced
  27. tree. Uses journalling.
  28. Balanced trees are more efficient than traditional file system
  29. architectural foundations.
  30. In general, ReiserFS is as fast as ext2, but is very efficient with
  31. large directories and small files. Additional patches are needed
  32. for NFS and quotas, please see <http://www.namesys.com/> for links.
  33. It is more easily extended to have features currently found in
  34. database and keyword search systems than block allocation based file
  35. systems are. The next version will be so extended, and will support
  36. plugins consistent with our motto ``It takes more than a license to
  37. make source code open.''
  38. Read <http://www.namesys.com/> to learn more about reiserfs.
  39. Sponsored by Threshold Networks, Emusic.com, and Bigstorage.com.
  40. If you like it, you can pay us to add new features to it that you
  41. need, buy a support contract, or pay us to port it to another OS.
  42. config REISERFS_CHECK
  43. bool "Enable reiserfs debug mode"
  44. depends on REISERFS_FS
  45. help
  46. If you set this to Y, then ReiserFS will perform every check it can
  47. possibly imagine of its internal consistency throughout its
  48. operation. It will also go substantially slower. More than once we
  49. have forgotten that this was on, and then gone despondent over the
  50. latest benchmarks.:-) Use of this option allows our team to go all
  51. out in checking for consistency when debugging without fear of its
  52. effect on end users. If you are on the verge of sending in a bug
  53. report, say Y and you might get a useful error message. Almost
  54. everyone should say N.
  55. config REISERFS_PROC_INFO
  56. bool "Stats in /proc/fs/reiserfs"
  57. depends on REISERFS_FS && PROC_FS
  58. help
  59. Create under /proc/fs/reiserfs a hierarchy of files, displaying
  60. various ReiserFS statistics and internal data at the expense of
  61. making your kernel or module slightly larger (+8 KB). This also
  62. increases the amount of kernel memory required for each mount.
  63. Almost everyone but ReiserFS developers and people fine-tuning
  64. reiserfs or tracing problems should say N.
  65. config REISERFS_FS_XATTR
  66. bool "ReiserFS extended attributes"
  67. depends on REISERFS_FS
  68. help
  69. Extended attributes are name:value pairs associated with inodes by
  70. the kernel or by users (see the attr(5) manual page, or visit
  71. <http://acl.bestbits.at/> for details).
  72. If unsure, say N.
  73. config REISERFS_FS_POSIX_ACL
  74. bool "ReiserFS POSIX Access Control Lists"
  75. depends on REISERFS_FS_XATTR
  76. select FS_POSIX_ACL
  77. help
  78. Posix Access Control Lists (ACLs) support permissions for users and
  79. groups beyond the owner/group/world scheme.
  80. To learn more about Access Control Lists, visit the Posix ACLs for
  81. Linux website <http://acl.bestbits.at/>.
  82. If you don't know what Access Control Lists are, say N
  83. config REISERFS_FS_SECURITY
  84. bool "ReiserFS Security Labels"
  85. depends on REISERFS_FS_XATTR
  86. help
  87. Security labels support alternative access control models
  88. implemented by security modules like SELinux. This option
  89. enables an extended attribute handler for file security
  90. labels in the ReiserFS filesystem.
  91. If you are not using a security module that requires using
  92. extended attributes for file security labels, say N.
  93. config JFS_FS
  94. tristate "JFS filesystem support"
  95. select NLS
  96. help
  97. This is a port of IBM's Journaled Filesystem . More information is
  98. available in the file <file:Documentation/filesystems/jfs.txt>.
  99. If you do not intend to use the JFS filesystem, say N.
  100. config JFS_POSIX_ACL
  101. bool "JFS POSIX Access Control Lists"
  102. depends on JFS_FS
  103. select FS_POSIX_ACL
  104. help
  105. Posix Access Control Lists (ACLs) support permissions for users and
  106. groups beyond the owner/group/world scheme.
  107. To learn more about Access Control Lists, visit the Posix ACLs for
  108. Linux website <http://acl.bestbits.at/>.
  109. If you don't know what Access Control Lists are, say N
  110. config JFS_SECURITY
  111. bool "JFS Security Labels"
  112. depends on JFS_FS
  113. help
  114. Security labels support alternative access control models
  115. implemented by security modules like SELinux. This option
  116. enables an extended attribute handler for file security
  117. labels in the jfs filesystem.
  118. If you are not using a security module that requires using
  119. extended attributes for file security labels, say N.
  120. config JFS_DEBUG
  121. bool "JFS debugging"
  122. depends on JFS_FS
  123. help
  124. If you are experiencing any problems with the JFS filesystem, say
  125. Y here. This will result in additional debugging messages to be
  126. written to the system log. Under normal circumstances, this
  127. results in very little overhead.
  128. config JFS_STATISTICS
  129. bool "JFS statistics"
  130. depends on JFS_FS
  131. help
  132. Enabling this option will cause statistics from the JFS file system
  133. to be made available to the user in the /proc/fs/jfs/ directory.
  134. config FS_POSIX_ACL
  135. # Posix ACL utility routines (for now, only ext2/ext3/jfs/reiserfs/nfs4)
  136. #
  137. # NOTE: you can implement Posix ACLs without these helpers (XFS does).
  138. # Never use this symbol for ifdefs.
  139. #
  140. bool
  141. default n
  142. config FILE_LOCKING
  143. bool "Enable POSIX file locking API" if EMBEDDED
  144. default y
  145. help
  146. This option enables standard file locking support, required
  147. for filesystems like NFS and for the flock() system
  148. call. Disabling this option saves about 11k.
  149. source "fs/xfs/Kconfig"
  150. source "fs/gfs2/Kconfig"
  151. config OCFS2_FS
  152. tristate "OCFS2 file system support"
  153. depends on NET && SYSFS
  154. select CONFIGFS_FS
  155. select JBD2
  156. select CRC32
  157. help
  158. OCFS2 is a general purpose extent based shared disk cluster file
  159. system with many similarities to ext3. It supports 64 bit inode
  160. numbers, and has automatically extending metadata groups which may
  161. also make it attractive for non-clustered use.
  162. You'll want to install the ocfs2-tools package in order to at least
  163. get "mount.ocfs2".
  164. Project web page: http://oss.oracle.com/projects/ocfs2
  165. Tools web page: http://oss.oracle.com/projects/ocfs2-tools
  166. OCFS2 mailing lists: http://oss.oracle.com/projects/ocfs2/mailman/
  167. For more information on OCFS2, see the file
  168. <file:Documentation/filesystems/ocfs2.txt>.
  169. config OCFS2_FS_O2CB
  170. tristate "O2CB Kernelspace Clustering"
  171. depends on OCFS2_FS
  172. default y
  173. help
  174. OCFS2 includes a simple kernelspace clustering package, the OCFS2
  175. Cluster Base. It only requires a very small userspace component
  176. to configure it. This comes with the standard ocfs2-tools package.
  177. O2CB is limited to maintaining a cluster for OCFS2 file systems.
  178. It cannot manage any other cluster applications.
  179. It is always safe to say Y here, as the clustering method is
  180. run-time selectable.
  181. config OCFS2_FS_USERSPACE_CLUSTER
  182. tristate "OCFS2 Userspace Clustering"
  183. depends on OCFS2_FS && DLM
  184. default y
  185. help
  186. This option will allow OCFS2 to use userspace clustering services
  187. in conjunction with the DLM in fs/dlm. If you are using a
  188. userspace cluster manager, say Y here.
  189. It is safe to say Y, as the clustering method is run-time
  190. selectable.
  191. config OCFS2_FS_STATS
  192. bool "OCFS2 statistics"
  193. depends on OCFS2_FS
  194. default y
  195. help
  196. This option allows some fs statistics to be captured. Enabling
  197. this option may increase the memory consumption.
  198. config OCFS2_DEBUG_MASKLOG
  199. bool "OCFS2 logging support"
  200. depends on OCFS2_FS
  201. default y
  202. help
  203. The ocfs2 filesystem has an extensive logging system. The system
  204. allows selection of events to log via files in /sys/o2cb/logmask/.
  205. This option will enlarge your kernel, but it allows debugging of
  206. ocfs2 filesystem issues.
  207. config OCFS2_DEBUG_FS
  208. bool "OCFS2 expensive checks"
  209. depends on OCFS2_FS
  210. default n
  211. help
  212. This option will enable expensive consistency checks. Enable
  213. this option for debugging only as it is likely to decrease
  214. performance of the filesystem.
  215. config OCFS2_FS_POSIX_ACL
  216. bool "OCFS2 POSIX Access Control Lists"
  217. depends on OCFS2_FS
  218. select FS_POSIX_ACL
  219. default n
  220. help
  221. Posix Access Control Lists (ACLs) support permissions for users and
  222. groups beyond the owner/group/world scheme.
  223. endif # BLOCK
  224. source "fs/notify/Kconfig"
  225. config QUOTA
  226. bool "Quota support"
  227. help
  228. If you say Y here, you will be able to set per user limits for disk
  229. usage (also called disk quotas). Currently, it works for the
  230. ext2, ext3, and reiserfs file system. ext3 also supports journalled
  231. quotas for which you don't need to run quotacheck(8) after an unclean
  232. shutdown.
  233. For further details, read the Quota mini-HOWTO, available from
  234. <http://www.tldp.org/docs.html#howto>, or the documentation provided
  235. with the quota tools. Probably the quota support is only useful for
  236. multi user systems. If unsure, say N.
  237. config QUOTA_NETLINK_INTERFACE
  238. bool "Report quota messages through netlink interface"
  239. depends on QUOTA && NET
  240. help
  241. If you say Y here, quota warnings (about exceeding softlimit, reaching
  242. hardlimit, etc.) will be reported through netlink interface. If unsure,
  243. say Y.
  244. config PRINT_QUOTA_WARNING
  245. bool "Print quota warnings to console (OBSOLETE)"
  246. depends on QUOTA
  247. default y
  248. help
  249. If you say Y here, quota warnings (about exceeding softlimit, reaching
  250. hardlimit, etc.) will be printed to the process' controlling terminal.
  251. Note that this behavior is currently deprecated and may go away in
  252. future. Please use notification via netlink socket instead.
  253. config QFMT_V1
  254. tristate "Old quota format support"
  255. depends on QUOTA
  256. help
  257. This quota format was (is) used by kernels earlier than 2.4.22. If
  258. you have quota working and you don't want to convert to new quota
  259. format say Y here.
  260. config QFMT_V2
  261. tristate "Quota format v2 support"
  262. depends on QUOTA
  263. help
  264. This quota format allows using quotas with 32-bit UIDs/GIDs. If you
  265. need this functionality say Y here.
  266. config QUOTACTL
  267. bool
  268. depends on XFS_QUOTA || QUOTA
  269. default y
  270. config AUTOFS_FS
  271. tristate "Kernel automounter support"
  272. help
  273. The automounter is a tool to automatically mount remote file systems
  274. on demand. This implementation is partially kernel-based to reduce
  275. overhead in the already-mounted case; this is unlike the BSD
  276. automounter (amd), which is a pure user space daemon.
  277. To use the automounter you need the user-space tools from the autofs
  278. package; you can find the location in <file:Documentation/Changes>.
  279. You also want to answer Y to "NFS file system support", below.
  280. If you want to use the newer version of the automounter with more
  281. features, say N here and say Y to "Kernel automounter v4 support",
  282. below.
  283. To compile this support as a module, choose M here: the module will be
  284. called autofs.
  285. If you are not a part of a fairly large, distributed network, you
  286. probably do not need an automounter, and can say N here.
  287. config AUTOFS4_FS
  288. tristate "Kernel automounter version 4 support (also supports v3)"
  289. help
  290. The automounter is a tool to automatically mount remote file systems
  291. on demand. This implementation is partially kernel-based to reduce
  292. overhead in the already-mounted case; this is unlike the BSD
  293. automounter (amd), which is a pure user space daemon.
  294. To use the automounter you need the user-space tools from
  295. <ftp://ftp.kernel.org/pub/linux/daemons/autofs/v4/>; you also
  296. want to answer Y to "NFS file system support", below.
  297. To compile this support as a module, choose M here: the module will be
  298. called autofs4. You will need to add "alias autofs autofs4" to your
  299. modules configuration file.
  300. If you are not a part of a fairly large, distributed network or
  301. don't have a laptop which needs to dynamically reconfigure to the
  302. local network, you probably do not need an automounter, and can say
  303. N here.
  304. config FUSE_FS
  305. tristate "FUSE (Filesystem in Userspace) support"
  306. help
  307. With FUSE it is possible to implement a fully functional filesystem
  308. in a userspace program.
  309. There's also companion library: libfuse. This library along with
  310. utilities is available from the FUSE homepage:
  311. <http://fuse.sourceforge.net/>
  312. See <file:Documentation/filesystems/fuse.txt> for more information.
  313. See <file:Documentation/Changes> for needed library/utility version.
  314. If you want to develop a userspace FS, or if you want to use
  315. a filesystem based on FUSE, answer Y or M.
  316. config GENERIC_ACL
  317. bool
  318. select FS_POSIX_ACL
  319. if BLOCK
  320. menu "CD-ROM/DVD Filesystems"
  321. config ISO9660_FS
  322. tristate "ISO 9660 CDROM file system support"
  323. help
  324. This is the standard file system used on CD-ROMs. It was previously
  325. known as "High Sierra File System" and is called "hsfs" on other
  326. Unix systems. The so-called Rock-Ridge extensions which allow for
  327. long Unix filenames and symbolic links are also supported by this
  328. driver. If you have a CD-ROM drive and want to do more with it than
  329. just listen to audio CDs and watch its LEDs, say Y (and read
  330. <file:Documentation/filesystems/isofs.txt> and the CD-ROM-HOWTO,
  331. available from <http://www.tldp.org/docs.html#howto>), thereby
  332. enlarging your kernel by about 27 KB; otherwise say N.
  333. To compile this file system support as a module, choose M here: the
  334. module will be called isofs.
  335. config JOLIET
  336. bool "Microsoft Joliet CDROM extensions"
  337. depends on ISO9660_FS
  338. select NLS
  339. help
  340. Joliet is a Microsoft extension for the ISO 9660 CD-ROM file system
  341. which allows for long filenames in unicode format (unicode is the
  342. new 16 bit character code, successor to ASCII, which encodes the
  343. characters of almost all languages of the world; see
  344. <http://www.unicode.org/> for more information). Say Y here if you
  345. want to be able to read Joliet CD-ROMs under Linux.
  346. config ZISOFS
  347. bool "Transparent decompression extension"
  348. depends on ISO9660_FS
  349. select ZLIB_INFLATE
  350. help
  351. This is a Linux-specific extension to RockRidge which lets you store
  352. data in compressed form on a CD-ROM and have it transparently
  353. decompressed when the CD-ROM is accessed. See
  354. <http://www.kernel.org/pub/linux/utils/fs/zisofs/> for the tools
  355. necessary to create such a filesystem. Say Y here if you want to be
  356. able to read such compressed CD-ROMs.
  357. config UDF_FS
  358. tristate "UDF file system support"
  359. select CRC_ITU_T
  360. help
  361. This is the new file system used on some CD-ROMs and DVDs. Say Y if
  362. you intend to mount DVD discs or CDRW's written in packet mode, or
  363. if written to by other UDF utilities, such as DirectCD.
  364. Please read <file:Documentation/filesystems/udf.txt>.
  365. To compile this file system support as a module, choose M here: the
  366. module will be called udf.
  367. If unsure, say N.
  368. config UDF_NLS
  369. bool
  370. default y
  371. depends on (UDF_FS=m && NLS) || (UDF_FS=y && NLS=y)
  372. endmenu
  373. endif # BLOCK
  374. if BLOCK
  375. menu "DOS/FAT/NT Filesystems"
  376. config FAT_FS
  377. tristate
  378. select NLS
  379. help
  380. If you want to use one of the FAT-based file systems (the MS-DOS and
  381. VFAT (Windows 95) file systems), then you must say Y or M here
  382. to include FAT support. You will then be able to mount partitions or
  383. diskettes with FAT-based file systems and transparently access the
  384. files on them, i.e. MSDOS files will look and behave just like all
  385. other Unix files.
  386. This FAT support is not a file system in itself, it only provides
  387. the foundation for the other file systems. You will have to say Y or
  388. M to at least one of "MSDOS fs support" or "VFAT fs support" in
  389. order to make use of it.
  390. Another way to read and write MSDOS floppies and hard drive
  391. partitions from within Linux (but not transparently) is with the
  392. mtools ("man mtools") program suite. You don't need to say Y here in
  393. order to do that.
  394. If you need to move large files on floppies between a DOS and a
  395. Linux box, say Y here, mount the floppy under Linux with an MSDOS
  396. file system and use GNU tar's M option. GNU tar is a program
  397. available for Unix and DOS ("man tar" or "info tar").
  398. The FAT support will enlarge your kernel by about 37 KB. If unsure,
  399. say Y.
  400. To compile this as a module, choose M here: the module will be called
  401. fat. Note that if you compile the FAT support as a module, you
  402. cannot compile any of the FAT-based file systems into the kernel
  403. -- they will have to be modules as well.
  404. config MSDOS_FS
  405. tristate "MSDOS fs support"
  406. select FAT_FS
  407. help
  408. This allows you to mount MSDOS partitions of your hard drive (unless
  409. they are compressed; to access compressed MSDOS partitions under
  410. Linux, you can either use the DOS emulator DOSEMU, described in the
  411. DOSEMU-HOWTO, available from
  412. <http://www.tldp.org/docs.html#howto>, or try dmsdosfs in
  413. <ftp://ibiblio.org/pub/Linux/system/filesystems/dosfs/>. If you
  414. intend to use dosemu with a non-compressed MSDOS partition, say Y
  415. here) and MSDOS floppies. This means that file access becomes
  416. transparent, i.e. the MSDOS files look and behave just like all
  417. other Unix files.
  418. If you have Windows 95 or Windows NT installed on your MSDOS
  419. partitions, you should use the VFAT file system (say Y to "VFAT fs
  420. support" below), or you will not be able to see the long filenames
  421. generated by Windows 95 / Windows NT.
  422. This option will enlarge your kernel by about 7 KB. If unsure,
  423. answer Y. This will only work if you said Y to "DOS FAT fs support"
  424. as well. To compile this as a module, choose M here: the module will
  425. be called msdos.
  426. config VFAT_FS
  427. tristate "VFAT (Windows-95) fs support"
  428. select FAT_FS
  429. help
  430. This option provides support for normal Windows file systems with
  431. long filenames. That includes non-compressed FAT-based file systems
  432. used by Windows 95, Windows 98, Windows NT 4.0, and the Unix
  433. programs from the mtools package.
  434. The VFAT support enlarges your kernel by about 10 KB and it only
  435. works if you said Y to the "DOS FAT fs support" above. Please read
  436. the file <file:Documentation/filesystems/vfat.txt> for details. If
  437. unsure, say Y.
  438. To compile this as a module, choose M here: the module will be called
  439. vfat.
  440. config FAT_DEFAULT_CODEPAGE
  441. int "Default codepage for FAT"
  442. depends on MSDOS_FS || VFAT_FS
  443. default 437
  444. help
  445. This option should be set to the codepage of your FAT filesystems.
  446. It can be overridden with the "codepage" mount option.
  447. See <file:Documentation/filesystems/vfat.txt> for more information.
  448. config FAT_DEFAULT_IOCHARSET
  449. string "Default iocharset for FAT"
  450. depends on VFAT_FS
  451. default "iso8859-1"
  452. help
  453. Set this to the default input/output character set you'd
  454. like FAT to use. It should probably match the character set
  455. that most of your FAT filesystems use, and can be overridden
  456. with the "iocharset" mount option for FAT filesystems.
  457. Note that "utf8" is not recommended for FAT filesystems.
  458. If unsure, you shouldn't set "utf8" here.
  459. See <file:Documentation/filesystems/vfat.txt> for more information.
  460. config NTFS_FS
  461. tristate "NTFS file system support"
  462. select NLS
  463. help
  464. NTFS is the file system of Microsoft Windows NT, 2000, XP and 2003.
  465. Saying Y or M here enables read support. There is partial, but
  466. safe, write support available. For write support you must also
  467. say Y to "NTFS write support" below.
  468. There are also a number of user-space tools available, called
  469. ntfsprogs. These include ntfsundelete and ntfsresize, that work
  470. without NTFS support enabled in the kernel.
  471. This is a rewrite from scratch of Linux NTFS support and replaced
  472. the old NTFS code starting with Linux 2.5.11. A backport to
  473. the Linux 2.4 kernel series is separately available as a patch
  474. from the project web site.
  475. For more information see <file:Documentation/filesystems/ntfs.txt>
  476. and <http://www.linux-ntfs.org/>.
  477. To compile this file system support as a module, choose M here: the
  478. module will be called ntfs.
  479. If you are not using Windows NT, 2000, XP or 2003 in addition to
  480. Linux on your computer it is safe to say N.
  481. config NTFS_DEBUG
  482. bool "NTFS debugging support"
  483. depends on NTFS_FS
  484. help
  485. If you are experiencing any problems with the NTFS file system, say
  486. Y here. This will result in additional consistency checks to be
  487. performed by the driver as well as additional debugging messages to
  488. be written to the system log. Note that debugging messages are
  489. disabled by default. To enable them, supply the option debug_msgs=1
  490. at the kernel command line when booting the kernel or as an option
  491. to insmod when loading the ntfs module. Once the driver is active,
  492. you can enable debugging messages by doing (as root):
  493. echo 1 > /proc/sys/fs/ntfs-debug
  494. Replacing the "1" with "0" would disable debug messages.
  495. If you leave debugging messages disabled, this results in little
  496. overhead, but enabling debug messages results in very significant
  497. slowdown of the system.
  498. When reporting bugs, please try to have available a full dump of
  499. debugging messages while the misbehaviour was occurring.
  500. config NTFS_RW
  501. bool "NTFS write support"
  502. depends on NTFS_FS
  503. help
  504. This enables the partial, but safe, write support in the NTFS driver.
  505. The only supported operation is overwriting existing files, without
  506. changing the file length. No file or directory creation, deletion or
  507. renaming is possible. Note only non-resident files can be written to
  508. so you may find that some very small files (<500 bytes or so) cannot
  509. be written to.
  510. While we cannot guarantee that it will not damage any data, we have
  511. so far not received a single report where the driver would have
  512. damaged someones data so we assume it is perfectly safe to use.
  513. Note: While write support is safe in this version (a rewrite from
  514. scratch of the NTFS support), it should be noted that the old NTFS
  515. write support, included in Linux 2.5.10 and before (since 1997),
  516. is not safe.
  517. This is currently useful with TopologiLinux. TopologiLinux is run
  518. on top of any DOS/Microsoft Windows system without partitioning your
  519. hard disk. Unlike other Linux distributions TopologiLinux does not
  520. need its own partition. For more information see
  521. <http://topologi-linux.sourceforge.net/>
  522. It is perfectly safe to say N here.
  523. endmenu
  524. endif # BLOCK
  525. menu "Pseudo filesystems"
  526. source "fs/proc/Kconfig"
  527. config SYSFS
  528. bool "sysfs file system support" if EMBEDDED
  529. default y
  530. help
  531. The sysfs filesystem is a virtual filesystem that the kernel uses to
  532. export internal kernel objects, their attributes, and their
  533. relationships to one another.
  534. Users can use sysfs to ascertain useful information about the running
  535. kernel, such as the devices the kernel has discovered on each bus and
  536. which driver each is bound to. sysfs can also be used to tune devices
  537. and other kernel subsystems.
  538. Some system agents rely on the information in sysfs to operate.
  539. /sbin/hotplug uses device and object attributes in sysfs to assist in
  540. delegating policy decisions, like persistently naming devices.
  541. sysfs is currently used by the block subsystem to mount the root
  542. partition. If sysfs is disabled you must specify the boot device on
  543. the kernel boot command line via its major and minor numbers. For
  544. example, "root=03:01" for /dev/hda1.
  545. Designers of embedded systems may wish to say N here to conserve space.
  546. config TMPFS
  547. bool "Virtual memory file system support (former shm fs)"
  548. help
  549. Tmpfs is a file system which keeps all files in virtual memory.
  550. Everything in tmpfs is temporary in the sense that no files will be
  551. created on your hard drive. The files live in memory and swap
  552. space. If you unmount a tmpfs instance, everything stored therein is
  553. lost.
  554. See <file:Documentation/filesystems/tmpfs.txt> for details.
  555. config TMPFS_POSIX_ACL
  556. bool "Tmpfs POSIX Access Control Lists"
  557. depends on TMPFS
  558. select GENERIC_ACL
  559. help
  560. POSIX Access Control Lists (ACLs) support permissions for users and
  561. groups beyond the owner/group/world scheme.
  562. To learn more about Access Control Lists, visit the POSIX ACLs for
  563. Linux website <http://acl.bestbits.at/>.
  564. If you don't know what Access Control Lists are, say N.
  565. config HUGETLBFS
  566. bool "HugeTLB file system support"
  567. depends on X86 || IA64 || PPC64 || SPARC64 || (SUPERH && MMU) || \
  568. (S390 && 64BIT) || BROKEN
  569. help
  570. hugetlbfs is a filesystem backing for HugeTLB pages, based on
  571. ramfs. For architectures that support it, say Y here and read
  572. <file:Documentation/vm/hugetlbpage.txt> for details.
  573. If unsure, say N.
  574. config HUGETLB_PAGE
  575. def_bool HUGETLBFS
  576. config CONFIGFS_FS
  577. tristate "Userspace-driven configuration filesystem"
  578. depends on SYSFS
  579. help
  580. configfs is a ram-based filesystem that provides the converse
  581. of sysfs's functionality. Where sysfs is a filesystem-based
  582. view of kernel objects, configfs is a filesystem-based manager
  583. of kernel objects, or config_items.
  584. Both sysfs and configfs can and should exist together on the
  585. same system. One is not a replacement for the other.
  586. endmenu
  587. menu "Miscellaneous filesystems"
  588. config ADFS_FS
  589. tristate "ADFS file system support (EXPERIMENTAL)"
  590. depends on BLOCK && EXPERIMENTAL
  591. help
  592. The Acorn Disc Filing System is the standard file system of the
  593. RiscOS operating system which runs on Acorn's ARM-based Risc PC
  594. systems and the Acorn Archimedes range of machines. If you say Y
  595. here, Linux will be able to read from ADFS partitions on hard drives
  596. and from ADFS-formatted floppy discs. If you also want to be able to
  597. write to those devices, say Y to "ADFS write support" below.
  598. The ADFS partition should be the first partition (i.e.,
  599. /dev/[hs]d?1) on each of your drives. Please read the file
  600. <file:Documentation/filesystems/adfs.txt> for further details.
  601. To compile this code as a module, choose M here: the module will be
  602. called adfs.
  603. If unsure, say N.
  604. config ADFS_FS_RW
  605. bool "ADFS write support (DANGEROUS)"
  606. depends on ADFS_FS
  607. help
  608. If you say Y here, you will be able to write to ADFS partitions on
  609. hard drives and ADFS-formatted floppy disks. This is experimental
  610. codes, so if you're unsure, say N.
  611. config AFFS_FS
  612. tristate "Amiga FFS file system support (EXPERIMENTAL)"
  613. depends on BLOCK && EXPERIMENTAL
  614. help
  615. The Fast File System (FFS) is the common file system used on hard
  616. disks by Amiga(tm) systems since AmigaOS Version 1.3 (34.20). Say Y
  617. if you want to be able to read and write files from and to an Amiga
  618. FFS partition on your hard drive. Amiga floppies however cannot be
  619. read with this driver due to an incompatibility of the floppy
  620. controller used in an Amiga and the standard floppy controller in
  621. PCs and workstations. Read <file:Documentation/filesystems/affs.txt>
  622. and <file:fs/affs/Changes>.
  623. With this driver you can also mount disk files used by Bernd
  624. Schmidt's Un*X Amiga Emulator
  625. (<http://www.freiburg.linux.de/~uae/>).
  626. If you want to do this, you will also need to say Y or M to "Loop
  627. device support", above.
  628. To compile this file system support as a module, choose M here: the
  629. module will be called affs. If unsure, say N.
  630. config ECRYPT_FS
  631. tristate "eCrypt filesystem layer support (EXPERIMENTAL)"
  632. depends on EXPERIMENTAL && KEYS && CRYPTO && NET
  633. help
  634. Encrypted filesystem that operates on the VFS layer. See
  635. <file:Documentation/filesystems/ecryptfs.txt> to learn more about
  636. eCryptfs. Userspace components are required and can be
  637. obtained from <http://ecryptfs.sf.net>.
  638. To compile this file system support as a module, choose M here: the
  639. module will be called ecryptfs.
  640. config HFS_FS
  641. tristate "Apple Macintosh file system support (EXPERIMENTAL)"
  642. depends on BLOCK && EXPERIMENTAL
  643. select NLS
  644. help
  645. If you say Y here, you will be able to mount Macintosh-formatted
  646. floppy disks and hard drive partitions with full read-write access.
  647. Please read <file:Documentation/filesystems/hfs.txt> to learn about
  648. the available mount options.
  649. To compile this file system support as a module, choose M here: the
  650. module will be called hfs.
  651. config HFSPLUS_FS
  652. tristate "Apple Extended HFS file system support"
  653. depends on BLOCK
  654. select NLS
  655. select NLS_UTF8
  656. help
  657. If you say Y here, you will be able to mount extended format
  658. Macintosh-formatted hard drive partitions with full read-write access.
  659. This file system is often called HFS+ and was introduced with
  660. MacOS 8. It includes all Mac specific filesystem data such as
  661. data forks and creator codes, but it also has several UNIX
  662. style features such as file ownership and permissions.
  663. config BEFS_FS
  664. tristate "BeOS file system (BeFS) support (read only) (EXPERIMENTAL)"
  665. depends on BLOCK && EXPERIMENTAL
  666. select NLS
  667. help
  668. The BeOS File System (BeFS) is the native file system of Be, Inc's
  669. BeOS. Notable features include support for arbitrary attributes
  670. on files and directories, and database-like indices on selected
  671. attributes. (Also note that this driver doesn't make those features
  672. available at this time). It is a 64 bit filesystem, so it supports
  673. extremely large volumes and files.
  674. If you use this filesystem, you should also say Y to at least one
  675. of the NLS (native language support) options below.
  676. If you don't know what this is about, say N.
  677. To compile this as a module, choose M here: the module will be
  678. called befs.
  679. config BEFS_DEBUG
  680. bool "Debug BeFS"
  681. depends on BEFS_FS
  682. help
  683. If you say Y here, you can use the 'debug' mount option to enable
  684. debugging output from the driver.
  685. config BFS_FS
  686. tristate "BFS file system support (EXPERIMENTAL)"
  687. depends on BLOCK && EXPERIMENTAL
  688. help
  689. Boot File System (BFS) is a file system used under SCO UnixWare to
  690. allow the bootloader access to the kernel image and other important
  691. files during the boot process. It is usually mounted under /stand
  692. and corresponds to the slice marked as "STAND" in the UnixWare
  693. partition. You should say Y if you want to read or write the files
  694. on your /stand slice from within Linux. You then also need to say Y
  695. to "UnixWare slices support", below. More information about the BFS
  696. file system is contained in the file
  697. <file:Documentation/filesystems/bfs.txt>.
  698. If you don't know what this is about, say N.
  699. To compile this as a module, choose M here: the module will be called
  700. bfs. Note that the file system of your root partition (the one
  701. containing the directory /) cannot be compiled as a module.
  702. config EFS_FS
  703. tristate "EFS file system support (read only) (EXPERIMENTAL)"
  704. depends on BLOCK && EXPERIMENTAL
  705. help
  706. EFS is an older file system used for non-ISO9660 CD-ROMs and hard
  707. disk partitions by SGI's IRIX operating system (IRIX 6.0 and newer
  708. uses the XFS file system for hard disk partitions however).
  709. This implementation only offers read-only access. If you don't know
  710. what all this is about, it's safe to say N. For more information
  711. about EFS see its home page at <http://aeschi.ch.eu.org/efs/>.
  712. To compile the EFS file system support as a module, choose M here: the
  713. module will be called efs.
  714. source "fs/jffs2/Kconfig"
  715. # UBIFS File system configuration
  716. source "fs/ubifs/Kconfig"
  717. config CRAMFS
  718. tristate "Compressed ROM file system support (cramfs)"
  719. depends on BLOCK
  720. select ZLIB_INFLATE
  721. help
  722. Saying Y here includes support for CramFs (Compressed ROM File
  723. System). CramFs is designed to be a simple, small, and compressed
  724. file system for ROM based embedded systems. CramFs is read-only,
  725. limited to 256MB file systems (with 16MB files), and doesn't support
  726. 16/32 bits uid/gid, hard links and timestamps.
  727. See <file:Documentation/filesystems/cramfs.txt> and
  728. <file:fs/cramfs/README> for further information.
  729. To compile this as a module, choose M here: the module will be called
  730. cramfs. Note that the root file system (the one containing the
  731. directory /) cannot be compiled as a module.
  732. If unsure, say N.
  733. config VXFS_FS
  734. tristate "FreeVxFS file system support (VERITAS VxFS(TM) compatible)"
  735. depends on BLOCK
  736. help
  737. FreeVxFS is a file system driver that support the VERITAS VxFS(TM)
  738. file system format. VERITAS VxFS(TM) is the standard file system
  739. of SCO UnixWare (and possibly others) and optionally available
  740. for Sunsoft Solaris, HP-UX and many other operating systems.
  741. Currently only readonly access is supported.
  742. NOTE: the file system type as used by mount(1), mount(2) and
  743. fstab(5) is 'vxfs' as it describes the file system format, not
  744. the actual driver.
  745. To compile this as a module, choose M here: the module will be
  746. called freevxfs. If unsure, say N.
  747. config MINIX_FS
  748. tristate "Minix file system support"
  749. depends on BLOCK
  750. help
  751. Minix is a simple operating system used in many classes about OS's.
  752. The minix file system (method to organize files on a hard disk
  753. partition or a floppy disk) was the original file system for Linux,
  754. but has been superseded by the second extended file system ext2fs.
  755. You don't want to use the minix file system on your hard disk
  756. because of certain built-in restrictions, but it is sometimes found
  757. on older Linux floppy disks. This option will enlarge your kernel
  758. by about 28 KB. If unsure, say N.
  759. To compile this file system support as a module, choose M here: the
  760. module will be called minix. Note that the file system of your root
  761. partition (the one containing the directory /) cannot be compiled as
  762. a module.
  763. config OMFS_FS
  764. tristate "SonicBlue Optimized MPEG File System support"
  765. depends on BLOCK
  766. select CRC_ITU_T
  767. help
  768. This is the proprietary file system used by the Rio Karma music
  769. player and ReplayTV DVR. Despite the name, this filesystem is not
  770. more efficient than a standard FS for MPEG files, in fact likely
  771. the opposite is true. Say Y if you have either of these devices
  772. and wish to mount its disk.
  773. To compile this file system support as a module, choose M here: the
  774. module will be called omfs. If unsure, say N.
  775. config HPFS_FS
  776. tristate "OS/2 HPFS file system support"
  777. depends on BLOCK
  778. help
  779. OS/2 is IBM's operating system for PC's, the same as Warp, and HPFS
  780. is the file system used for organizing files on OS/2 hard disk
  781. partitions. Say Y if you want to be able to read files from and
  782. write files to an OS/2 HPFS partition on your hard drive. OS/2
  783. floppies however are in regular MSDOS format, so you don't need this
  784. option in order to be able to read them. Read
  785. <file:Documentation/filesystems/hpfs.txt>.
  786. To compile this file system support as a module, choose M here: the
  787. module will be called hpfs. If unsure, say N.
  788. config QNX4FS_FS
  789. tristate "QNX4 file system support (read only)"
  790. depends on BLOCK
  791. help
  792. This is the file system used by the real-time operating systems
  793. QNX 4 and QNX 6 (the latter is also called QNX RTP).
  794. Further information is available at <http://www.qnx.com/>.
  795. Say Y if you intend to mount QNX hard disks or floppies.
  796. Unless you say Y to "QNX4FS read-write support" below, you will
  797. only be able to read these file systems.
  798. To compile this file system support as a module, choose M here: the
  799. module will be called qnx4.
  800. If you don't know whether you need it, then you don't need it:
  801. answer N.
  802. config QNX4FS_RW
  803. bool "QNX4FS write support (DANGEROUS)"
  804. depends on QNX4FS_FS && EXPERIMENTAL && BROKEN
  805. help
  806. Say Y if you want to test write support for QNX4 file systems.
  807. It's currently broken, so for now:
  808. answer N.
  809. config ROMFS_FS
  810. tristate "ROM file system support"
  811. depends on BLOCK
  812. ---help---
  813. This is a very small read-only file system mainly intended for
  814. initial ram disks of installation disks, but it could be used for
  815. other read-only media as well. Read
  816. <file:Documentation/filesystems/romfs.txt> for details.
  817. To compile this file system support as a module, choose M here: the
  818. module will be called romfs. Note that the file system of your
  819. root partition (the one containing the directory /) cannot be a
  820. module.
  821. If you don't know whether you need it, then you don't need it:
  822. answer N.
  823. config SYSV_FS
  824. tristate "System V/Xenix/V7/Coherent file system support"
  825. depends on BLOCK
  826. help
  827. SCO, Xenix and Coherent are commercial Unix systems for Intel
  828. machines, and Version 7 was used on the DEC PDP-11. Saying Y
  829. here would allow you to read from their floppies and hard disk
  830. partitions.
  831. If you have floppies or hard disk partitions like that, it is likely
  832. that they contain binaries from those other Unix systems; in order
  833. to run these binaries, you will want to install linux-abi which is
  834. a set of kernel modules that lets you run SCO, Xenix, Wyse,
  835. UnixWare, Dell Unix and System V programs under Linux. It is
  836. available via FTP (user: ftp) from
  837. <ftp://ftp.openlinux.org/pub/people/hch/linux-abi/>).
  838. NOTE: that will work only for binaries from Intel-based systems;
  839. PDP ones will have to wait until somebody ports Linux to -11 ;-)
  840. If you only intend to mount files from some other Unix over the
  841. network using NFS, you don't need the System V file system support
  842. (but you need NFS file system support obviously).
  843. Note that this option is generally not needed for floppies, since a
  844. good portable way to transport files and directories between unixes
  845. (and even other operating systems) is given by the tar program ("man
  846. tar" or preferably "info tar"). Note also that this option has
  847. nothing whatsoever to do with the option "System V IPC". Read about
  848. the System V file system in
  849. <file:Documentation/filesystems/sysv-fs.txt>.
  850. Saying Y here will enlarge your kernel by about 27 KB.
  851. To compile this as a module, choose M here: the module will be called
  852. sysv.
  853. If you haven't heard about all of this before, it's safe to say N.
  854. config UFS_FS
  855. tristate "UFS file system support (read only)"
  856. depends on BLOCK
  857. help
  858. BSD and derivate versions of Unix (such as SunOS, FreeBSD, NetBSD,
  859. OpenBSD and NeXTstep) use a file system called UFS. Some System V
  860. Unixes can create and mount hard disk partitions and diskettes using
  861. this file system as well. Saying Y here will allow you to read from
  862. these partitions; if you also want to write to them, say Y to the
  863. experimental "UFS file system write support", below. Please read the
  864. file <file:Documentation/filesystems/ufs.txt> for more information.
  865. The recently released UFS2 variant (used in FreeBSD 5.x) is
  866. READ-ONLY supported.
  867. Note that this option is generally not needed for floppies, since a
  868. good portable way to transport files and directories between unixes
  869. (and even other operating systems) is given by the tar program ("man
  870. tar" or preferably "info tar").
  871. When accessing NeXTstep files, you may need to convert them from the
  872. NeXT character set to the Latin1 character set; use the program
  873. recode ("info recode") for this purpose.
  874. To compile the UFS file system support as a module, choose M here: the
  875. module will be called ufs.
  876. If you haven't heard about all of this before, it's safe to say N.
  877. config UFS_FS_WRITE
  878. bool "UFS file system write support (DANGEROUS)"
  879. depends on UFS_FS && EXPERIMENTAL
  880. help
  881. Say Y here if you want to try writing to UFS partitions. This is
  882. experimental, so you should back up your UFS partitions beforehand.
  883. config UFS_DEBUG
  884. bool "UFS debugging"
  885. depends on UFS_FS
  886. help
  887. If you are experiencing any problems with the UFS filesystem, say
  888. Y here. This will result in _many_ additional debugging messages to be
  889. written to the system log.
  890. endmenu
  891. menuconfig NETWORK_FILESYSTEMS
  892. bool "Network File Systems"
  893. default y
  894. depends on NET
  895. ---help---
  896. Say Y here to get to see options for network filesystems and
  897. filesystem-related networking code, such as NFS daemon and
  898. RPCSEC security modules.
  899. This option alone does not add any kernel code.
  900. If you say N, all options in this submenu will be skipped and
  901. disabled; if unsure, say Y here.
  902. if NETWORK_FILESYSTEMS
  903. config NFS_FS
  904. tristate "NFS client support"
  905. depends on INET
  906. select LOCKD
  907. select SUNRPC
  908. select NFS_ACL_SUPPORT if NFS_V3_ACL
  909. help
  910. Choose Y here if you want to access files residing on other
  911. computers using Sun's Network File System protocol. To compile
  912. this file system support as a module, choose M here: the module
  913. will be called nfs.
  914. To mount file systems exported by NFS servers, you also need to
  915. install the user space mount.nfs command which can be found in
  916. the Linux nfs-utils package, available from http://linux-nfs.org/.
  917. Information about using the mount command is available in the
  918. mount(8) man page. More detail about the Linux NFS client
  919. implementation is available via the nfs(5) man page.
  920. Below you can choose which versions of the NFS protocol are
  921. available in the kernel to mount NFS servers. Support for NFS
  922. version 2 (RFC 1094) is always available when NFS_FS is selected.
  923. To configure a system which mounts its root file system via NFS
  924. at boot time, say Y here, select "Kernel level IP
  925. autoconfiguration" in the NETWORK menu, and select "Root file
  926. system on NFS" below. You cannot compile this file system as a
  927. module in this case.
  928. If unsure, say N.
  929. config NFS_V3
  930. bool "NFS client support for NFS version 3"
  931. depends on NFS_FS
  932. help
  933. This option enables support for version 3 of the NFS protocol
  934. (RFC 1813) in the kernel's NFS client.
  935. If unsure, say Y.
  936. config NFS_V3_ACL
  937. bool "NFS client support for the NFSv3 ACL protocol extension"
  938. depends on NFS_V3
  939. help
  940. Some NFS servers support an auxiliary NFSv3 ACL protocol that
  941. Sun added to Solaris but never became an official part of the
  942. NFS version 3 protocol. This protocol extension allows
  943. applications on NFS clients to manipulate POSIX Access Control
  944. Lists on files residing on NFS servers. NFS servers enforce
  945. ACLs on local files whether this protocol is available or not.
  946. Choose Y here if your NFS server supports the Solaris NFSv3 ACL
  947. protocol extension and you want your NFS client to allow
  948. applications to access and modify ACLs on files on the server.
  949. Most NFS servers don't support the Solaris NFSv3 ACL protocol
  950. extension. You can choose N here or specify the "noacl" mount
  951. option to prevent your NFS client from trying to use the NFSv3
  952. ACL protocol.
  953. If unsure, say N.
  954. config NFS_V4
  955. bool "NFS client support for NFS version 4 (EXPERIMENTAL)"
  956. depends on NFS_FS && EXPERIMENTAL
  957. select RPCSEC_GSS_KRB5
  958. help
  959. This option enables support for version 4 of the NFS protocol
  960. (RFC 3530) in the kernel's NFS client.
  961. To mount NFS servers using NFSv4, you also need to install user
  962. space programs which can be found in the Linux nfs-utils package,
  963. available from http://linux-nfs.org/.
  964. If unsure, say N.
  965. config ROOT_NFS
  966. bool "Root file system on NFS"
  967. depends on NFS_FS=y && IP_PNP
  968. help
  969. If you want your system to mount its root file system via NFS,
  970. choose Y here. This is common practice for managing systems
  971. without local permanent storage. For details, read
  972. <file:Documentation/filesystems/nfsroot.txt>.
  973. Most people say N here.
  974. config NFSD
  975. tristate "NFS server support"
  976. depends on INET
  977. select LOCKD
  978. select SUNRPC
  979. select EXPORTFS
  980. select NFS_ACL_SUPPORT if NFSD_V2_ACL
  981. help
  982. Choose Y here if you want to allow other computers to access
  983. files residing on this system using Sun's Network File System
  984. protocol. To compile the NFS server support as a module,
  985. choose M here: the module will be called nfsd.
  986. You may choose to use a user-space NFS server instead, in which
  987. case you can choose N here.
  988. To export local file systems using NFS, you also need to install
  989. user space programs which can be found in the Linux nfs-utils
  990. package, available from http://linux-nfs.org/. More detail about
  991. the Linux NFS server implementation is available via the
  992. exports(5) man page.
  993. Below you can choose which versions of the NFS protocol are
  994. available to clients mounting the NFS server on this system.
  995. Support for NFS version 2 (RFC 1094) is always available when
  996. CONFIG_NFSD is selected.
  997. If unsure, say N.
  998. config NFSD_V2_ACL
  999. bool
  1000. depends on NFSD
  1001. config NFSD_V3
  1002. bool "NFS server support for NFS version 3"
  1003. depends on NFSD
  1004. help
  1005. This option enables support in your system's NFS server for
  1006. version 3 of the NFS protocol (RFC 1813).
  1007. If unsure, say Y.
  1008. config NFSD_V3_ACL
  1009. bool "NFS server support for the NFSv3 ACL protocol extension"
  1010. depends on NFSD_V3
  1011. select NFSD_V2_ACL
  1012. help
  1013. Solaris NFS servers support an auxiliary NFSv3 ACL protocol that
  1014. never became an official part of the NFS version 3 protocol.
  1015. This protocol extension allows applications on NFS clients to
  1016. manipulate POSIX Access Control Lists on files residing on NFS
  1017. servers. NFS servers enforce POSIX ACLs on local files whether
  1018. this protocol is available or not.
  1019. This option enables support in your system's NFS server for the
  1020. NFSv3 ACL protocol extension allowing NFS clients to manipulate
  1021. POSIX ACLs on files exported by your system's NFS server. NFS
  1022. clients which support the Solaris NFSv3 ACL protocol can then
  1023. access and modify ACLs on your NFS server.
  1024. To store ACLs on your NFS server, you also need to enable ACL-
  1025. related CONFIG options for your local file systems of choice.
  1026. If unsure, say N.
  1027. config NFSD_V4
  1028. bool "NFS server support for NFS version 4 (EXPERIMENTAL)"
  1029. depends on NFSD && PROC_FS && EXPERIMENTAL
  1030. select NFSD_V3
  1031. select FS_POSIX_ACL
  1032. select RPCSEC_GSS_KRB5
  1033. help
  1034. This option enables support in your system's NFS server for
  1035. version 4 of the NFS protocol (RFC 3530).
  1036. To export files using NFSv4, you need to install additional user
  1037. space programs which can be found in the Linux nfs-utils package,
  1038. available from http://linux-nfs.org/.
  1039. If unsure, say N.
  1040. config LOCKD
  1041. tristate
  1042. config LOCKD_V4
  1043. bool
  1044. depends on NFSD_V3 || NFS_V3
  1045. default y
  1046. config EXPORTFS
  1047. tristate
  1048. config NFS_ACL_SUPPORT
  1049. tristate
  1050. select FS_POSIX_ACL
  1051. config NFS_COMMON
  1052. bool
  1053. depends on NFSD || NFS_FS
  1054. default y
  1055. config SUNRPC
  1056. tristate
  1057. config SUNRPC_GSS
  1058. tristate
  1059. config SUNRPC_XPRT_RDMA
  1060. tristate
  1061. depends on SUNRPC && INFINIBAND && EXPERIMENTAL
  1062. default SUNRPC && INFINIBAND
  1063. help
  1064. This option enables an RPC client transport capability that
  1065. allows the NFS client to mount servers via an RDMA-enabled
  1066. transport.
  1067. To compile RPC client RDMA transport support as a module,
  1068. choose M here: the module will be called xprtrdma.
  1069. If unsure, say N.
  1070. config SUNRPC_REGISTER_V4
  1071. bool "Register local RPC services via rpcbind v4 (EXPERIMENTAL)"
  1072. depends on SUNRPC && EXPERIMENTAL
  1073. default n
  1074. help
  1075. Sun added support for registering RPC services at an IPv6
  1076. address by creating two new versions of the rpcbind protocol
  1077. (RFC 1833).
  1078. This option enables support in the kernel RPC server for
  1079. registering kernel RPC services via version 4 of the rpcbind
  1080. protocol. If you enable this option, you must run a portmapper
  1081. daemon that supports rpcbind protocol version 4.
  1082. Serving NFS over IPv6 from knfsd (the kernel's NFS server)
  1083. requires that you enable this option and use a portmapper that
  1084. supports rpcbind version 4.
  1085. If unsure, say N to get traditional behavior (register kernel
  1086. RPC services using only rpcbind version 2). Distributions
  1087. using the legacy Linux portmapper daemon must say N here.
  1088. config RPCSEC_GSS_KRB5
  1089. tristate "Secure RPC: Kerberos V mechanism (EXPERIMENTAL)"
  1090. depends on SUNRPC && EXPERIMENTAL
  1091. select SUNRPC_GSS
  1092. select CRYPTO
  1093. select CRYPTO_MD5
  1094. select CRYPTO_DES
  1095. select CRYPTO_CBC
  1096. help
  1097. Choose Y here to enable Secure RPC using the Kerberos version 5
  1098. GSS-API mechanism (RFC 1964).
  1099. Secure RPC calls with Kerberos require an auxiliary user-space
  1100. daemon which may be found in the Linux nfs-utils package
  1101. available from http://linux-nfs.org/. In addition, user-space
  1102. Kerberos support should be installed.
  1103. If unsure, say N.
  1104. config RPCSEC_GSS_SPKM3
  1105. tristate "Secure RPC: SPKM3 mechanism (EXPERIMENTAL)"
  1106. depends on SUNRPC && EXPERIMENTAL
  1107. select SUNRPC_GSS
  1108. select CRYPTO
  1109. select CRYPTO_MD5
  1110. select CRYPTO_DES
  1111. select CRYPTO_CAST5
  1112. select CRYPTO_CBC
  1113. help
  1114. Choose Y here to enable Secure RPC using the SPKM3 public key
  1115. GSS-API mechansim (RFC 2025).
  1116. Secure RPC calls with SPKM3 require an auxiliary userspace
  1117. daemon which may be found in the Linux nfs-utils package
  1118. available from http://linux-nfs.org/.
  1119. If unsure, say N.
  1120. config SMB_FS
  1121. tristate "SMB file system support (OBSOLETE, please use CIFS)"
  1122. depends on INET
  1123. select NLS
  1124. help
  1125. SMB (Server Message Block) is the protocol Windows for Workgroups
  1126. (WfW), Windows 95/98, Windows NT and OS/2 Lan Manager use to share
  1127. files and printers over local networks. Saying Y here allows you to
  1128. mount their file systems (often called "shares" in this context) and
  1129. access them just like any other Unix directory. Currently, this
  1130. works only if the Windows machines use TCP/IP as the underlying
  1131. transport protocol, and not NetBEUI. For details, read
  1132. <file:Documentation/filesystems/smbfs.txt> and the SMB-HOWTO,
  1133. available from <http://www.tldp.org/docs.html#howto>.
  1134. Note: if you just want your box to act as an SMB *server* and make
  1135. files and printing services available to Windows clients (which need
  1136. to have a TCP/IP stack), you don't need to say Y here; you can use
  1137. the program SAMBA (available from <ftp://ftp.samba.org/pub/samba/>)
  1138. for that.
  1139. General information about how to connect Linux, Windows machines and
  1140. Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
  1141. To compile the SMB support as a module, choose M here:
  1142. the module will be called smbfs. Most people say N, however.
  1143. config SMB_NLS_DEFAULT
  1144. bool "Use a default NLS"
  1145. depends on SMB_FS
  1146. help
  1147. Enabling this will make smbfs use nls translations by default. You
  1148. need to specify the local charset (CONFIG_NLS_DEFAULT) in the nls
  1149. settings and you need to give the default nls for the SMB server as
  1150. CONFIG_SMB_NLS_REMOTE.
  1151. The nls settings can be changed at mount time, if your smbmount
  1152. supports that, using the codepage and iocharset parameters.
  1153. smbmount from samba 2.2.0 or later supports this.
  1154. config SMB_NLS_REMOTE
  1155. string "Default Remote NLS Option"
  1156. depends on SMB_NLS_DEFAULT
  1157. default "cp437"
  1158. help
  1159. This setting allows you to specify a default value for which
  1160. codepage the server uses. If this field is left blank no
  1161. translations will be done by default. The local codepage/charset
  1162. default to CONFIG_NLS_DEFAULT.
  1163. The nls settings can be changed at mount time, if your smbmount
  1164. supports that, using the codepage and iocharset parameters.
  1165. smbmount from samba 2.2.0 or later supports this.
  1166. source "fs/cifs/Kconfig"
  1167. config NCP_FS
  1168. tristate "NCP file system support (to mount NetWare volumes)"
  1169. depends on IPX!=n || INET
  1170. help
  1171. NCP (NetWare Core Protocol) is a protocol that runs over IPX and is
  1172. used by Novell NetWare clients to talk to file servers. It is to
  1173. IPX what NFS is to TCP/IP, if that helps. Saying Y here allows you
  1174. to mount NetWare file server volumes and to access them just like
  1175. any other Unix directory. For details, please read the file
  1176. <file:Documentation/filesystems/ncpfs.txt> in the kernel source and
  1177. the IPX-HOWTO from <http://www.tldp.org/docs.html#howto>.
  1178. You do not have to say Y here if you want your Linux box to act as a
  1179. file *server* for Novell NetWare clients.
  1180. General information about how to connect Linux, Windows machines and
  1181. Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
  1182. To compile this as a module, choose M here: the module will be called
  1183. ncpfs. Say N unless you are connected to a Novell network.
  1184. source "fs/ncpfs/Kconfig"
  1185. config CODA_FS
  1186. tristate "Coda file system support (advanced network fs)"
  1187. depends on INET
  1188. help
  1189. Coda is an advanced network file system, similar to NFS in that it
  1190. enables you to mount file systems of a remote server and access them
  1191. with regular Unix commands as if they were sitting on your hard
  1192. disk. Coda has several advantages over NFS: support for
  1193. disconnected operation (e.g. for laptops), read/write server
  1194. replication, security model for authentication and encryption,
  1195. persistent client caches and write back caching.
  1196. If you say Y here, your Linux box will be able to act as a Coda
  1197. *client*. You will need user level code as well, both for the
  1198. client and server. Servers are currently user level, i.e. they need
  1199. no kernel support. Please read
  1200. <file:Documentation/filesystems/coda.txt> and check out the Coda
  1201. home page <http://www.coda.cs.cmu.edu/>.
  1202. To compile the coda client support as a module, choose M here: the
  1203. module will be called coda.
  1204. config AFS_FS
  1205. tristate "Andrew File System support (AFS) (EXPERIMENTAL)"
  1206. depends on INET && EXPERIMENTAL
  1207. select AF_RXRPC
  1208. help
  1209. If you say Y here, you will get an experimental Andrew File System
  1210. driver. It currently only supports unsecured read-only AFS access.
  1211. See <file:Documentation/filesystems/afs.txt> for more information.
  1212. If unsure, say N.
  1213. config AFS_DEBUG
  1214. bool "AFS dynamic debugging"
  1215. depends on AFS_FS
  1216. help
  1217. Say Y here to make runtime controllable debugging messages appear.
  1218. See <file:Documentation/filesystems/afs.txt> for more information.
  1219. If unsure, say N.
  1220. config 9P_FS
  1221. tristate "Plan 9 Resource Sharing Support (9P2000) (Experimental)"
  1222. depends on INET && NET_9P && EXPERIMENTAL
  1223. help
  1224. If you say Y here, you will get experimental support for
  1225. Plan 9 resource sharing via the 9P2000 protocol.
  1226. See <http://v9fs.sf.net> for more information.
  1227. If unsure, say N.
  1228. endif # NETWORK_FILESYSTEMS
  1229. if BLOCK
  1230. menu "Partition Types"
  1231. source "fs/partitions/Kconfig"
  1232. endmenu
  1233. endif
  1234. source "fs/nls/Kconfig"
  1235. source "fs/dlm/Kconfig"
  1236. endmenu