Kconfig 54 KB

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