Kconfig 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833
  1. #
  2. # File system configuration
  3. #
  4. menu "File systems"
  5. config EXT2_FS
  6. tristate "Second extended fs support"
  7. help
  8. Ext2 is a standard Linux file system for hard disks.
  9. To compile this file system support as a module, choose M here: the
  10. module will be called ext2. Be aware however that the file system
  11. of your root partition (the one containing the directory /) cannot
  12. be compiled as a module, and so this could be dangerous.
  13. If unsure, say Y.
  14. config EXT2_FS_XATTR
  15. bool "Ext2 extended attributes"
  16. depends on EXT2_FS
  17. help
  18. Extended attributes are name:value pairs associated with inodes by
  19. the kernel or by users (see the attr(5) manual page, or visit
  20. <http://acl.bestbits.at/> for details).
  21. If unsure, say N.
  22. config EXT2_FS_POSIX_ACL
  23. bool "Ext2 POSIX Access Control Lists"
  24. depends on EXT2_FS_XATTR
  25. select FS_POSIX_ACL
  26. help
  27. Posix Access Control Lists (ACLs) support permissions for users and
  28. groups beyond the owner/group/world scheme.
  29. To learn more about Access Control Lists, visit the Posix ACLs for
  30. Linux website <http://acl.bestbits.at/>.
  31. If you don't know what Access Control Lists are, say N
  32. config EXT2_FS_SECURITY
  33. bool "Ext2 Security Labels"
  34. depends on EXT2_FS_XATTR
  35. help
  36. Security labels support alternative access control models
  37. implemented by security modules like SELinux. This option
  38. enables an extended attribute handler for file security
  39. labels in the ext2 filesystem.
  40. If you are not using a security module that requires using
  41. extended attributes for file security labels, say N.
  42. config EXT2_FS_XIP
  43. bool "Ext2 execute in place support"
  44. depends on EXT2_FS
  45. help
  46. Execute in place can be used on memory-backed block devices. If you
  47. enable this option, you can select to mount block devices which are
  48. capable of this feature without using the page cache.
  49. If you do not use a block device that is capable of using this,
  50. or if unsure, say N.
  51. config FS_XIP
  52. # execute in place
  53. bool
  54. depends on EXT2_FS_XIP
  55. default y
  56. config EXT3_FS
  57. tristate "Ext3 journalling file system support"
  58. select JBD
  59. help
  60. This is the journaling version of the Second extended file system
  61. (often called ext3), the de facto standard Linux file system
  62. (method to organize files on a storage device) for hard disks.
  63. The journaling code included in this driver means you do not have
  64. to run e2fsck (file system checker) on your file systems after a
  65. crash. The journal keeps track of any changes that were being made
  66. at the time the system crashed, and can ensure that your file system
  67. is consistent without the need for a lengthy check.
  68. Other than adding the journal to the file system, the on-disk format
  69. of ext3 is identical to ext2. It is possible to freely switch
  70. between using the ext3 driver and the ext2 driver, as long as the
  71. file system has been cleanly unmounted, or e2fsck is run on the file
  72. system.
  73. To add a journal on an existing ext2 file system or change the
  74. behavior of ext3 file systems, you can use the tune2fs utility ("man
  75. tune2fs"). To modify attributes of files and directories on ext3
  76. file systems, use chattr ("man chattr"). You need to be using
  77. e2fsprogs version 1.20 or later in order to create ext3 journals
  78. (available at <http://sourceforge.net/projects/e2fsprogs/>).
  79. To compile this file system support as a module, choose M here: the
  80. module will be called ext3. Be aware however that the file system
  81. of your root partition (the one containing the directory /) cannot
  82. be compiled as a module, and so this may be dangerous.
  83. config EXT3_FS_XATTR
  84. bool "Ext3 extended attributes"
  85. depends on EXT3_FS
  86. default y
  87. help
  88. Extended attributes are name:value pairs associated with inodes by
  89. the kernel or by users (see the attr(5) manual page, or visit
  90. <http://acl.bestbits.at/> for details).
  91. If unsure, say N.
  92. You need this for POSIX ACL support on ext3.
  93. config EXT3_FS_POSIX_ACL
  94. bool "Ext3 POSIX Access Control Lists"
  95. depends on EXT3_FS_XATTR
  96. select FS_POSIX_ACL
  97. help
  98. Posix Access Control Lists (ACLs) support permissions for users and
  99. groups beyond the owner/group/world scheme.
  100. To learn more about Access Control Lists, visit the Posix ACLs for
  101. Linux website <http://acl.bestbits.at/>.
  102. If you don't know what Access Control Lists are, say N
  103. config EXT3_FS_SECURITY
  104. bool "Ext3 Security Labels"
  105. depends on EXT3_FS_XATTR
  106. help
  107. Security labels support alternative access control models
  108. implemented by security modules like SELinux. This option
  109. enables an extended attribute handler for file security
  110. labels in the ext3 filesystem.
  111. If you are not using a security module that requires using
  112. extended attributes for file security labels, say N.
  113. config JBD
  114. tristate
  115. help
  116. This is a generic journaling layer for block devices. It is
  117. currently used by the ext3 and OCFS2 file systems, but it could
  118. also be used to add journal support to other file systems or block
  119. devices such as RAID or LVM.
  120. If you are using the ext3 or OCFS2 file systems, you need to
  121. say Y here. If you are not using ext3 OCFS2 then you will probably
  122. want to say N.
  123. To compile this device as a module, choose M here: the module will be
  124. called jbd. If you are compiling ext3 or OCFS2 into the kernel,
  125. you cannot compile this code as a module.
  126. config JBD_DEBUG
  127. bool "JBD (ext3) debugging support"
  128. depends on JBD
  129. help
  130. If you are using the ext3 journaled file system (or potentially any
  131. other file system/device using JBD), this option allows you to
  132. enable debugging output while the system is running, in order to
  133. help track down any problems you are having. By default the
  134. debugging output will be turned off.
  135. If you select Y here, then you will be able to turn on debugging
  136. with "echo N > /proc/sys/fs/jbd-debug", where N is a number between
  137. 1 and 5, the higher the number, the more debugging output is
  138. generated. To turn debugging off again, do
  139. "echo 0 > /proc/sys/fs/jbd-debug".
  140. config FS_MBCACHE
  141. # Meta block cache for Extended Attributes (ext2/ext3)
  142. tristate
  143. depends on EXT2_FS_XATTR || EXT3_FS_XATTR
  144. default y if EXT2_FS=y || EXT3_FS=y
  145. default m if EXT2_FS=m || EXT3_FS=m
  146. config REISERFS_FS
  147. tristate "Reiserfs support"
  148. help
  149. Stores not just filenames but the files themselves in a balanced
  150. tree. Uses journaling.
  151. Balanced trees are more efficient than traditional file system
  152. architectural foundations.
  153. In general, ReiserFS is as fast as ext2, but is very efficient with
  154. large directories and small files. Additional patches are needed
  155. for NFS and quotas, please see <http://www.namesys.com/> for links.
  156. It is more easily extended to have features currently found in
  157. database and keyword search systems than block allocation based file
  158. systems are. The next version will be so extended, and will support
  159. plugins consistent with our motto ``It takes more than a license to
  160. make source code open.''
  161. Read <http://www.namesys.com/> to learn more about reiserfs.
  162. Sponsored by Threshold Networks, Emusic.com, and Bigstorage.com.
  163. If you like it, you can pay us to add new features to it that you
  164. need, buy a support contract, or pay us to port it to another OS.
  165. config REISERFS_CHECK
  166. bool "Enable reiserfs debug mode"
  167. depends on REISERFS_FS
  168. help
  169. If you set this to Y, then ReiserFS will perform every check it can
  170. possibly imagine of its internal consistency throughout its
  171. operation. It will also go substantially slower. More than once we
  172. have forgotten that this was on, and then gone despondent over the
  173. latest benchmarks.:-) Use of this option allows our team to go all
  174. out in checking for consistency when debugging without fear of its
  175. effect on end users. If you are on the verge of sending in a bug
  176. report, say Y and you might get a useful error message. Almost
  177. everyone should say N.
  178. config REISERFS_PROC_INFO
  179. bool "Stats in /proc/fs/reiserfs"
  180. depends on REISERFS_FS
  181. help
  182. Create under /proc/fs/reiserfs a hierarchy of files, displaying
  183. various ReiserFS statistics and internal data at the expense of
  184. making your kernel or module slightly larger (+8 KB). This also
  185. increases the amount of kernel memory required for each mount.
  186. Almost everyone but ReiserFS developers and people fine-tuning
  187. reiserfs or tracing problems should say N.
  188. config REISERFS_FS_XATTR
  189. bool "ReiserFS extended attributes"
  190. depends on REISERFS_FS
  191. help
  192. Extended attributes are name:value pairs associated with inodes by
  193. the kernel or by users (see the attr(5) manual page, or visit
  194. <http://acl.bestbits.at/> for details).
  195. If unsure, say N.
  196. config REISERFS_FS_POSIX_ACL
  197. bool "ReiserFS POSIX Access Control Lists"
  198. depends on REISERFS_FS_XATTR
  199. select FS_POSIX_ACL
  200. help
  201. Posix Access Control Lists (ACLs) support permissions for users and
  202. groups beyond the owner/group/world scheme.
  203. To learn more about Access Control Lists, visit the Posix ACLs for
  204. Linux website <http://acl.bestbits.at/>.
  205. If you don't know what Access Control Lists are, say N
  206. config REISERFS_FS_SECURITY
  207. bool "ReiserFS Security Labels"
  208. depends on REISERFS_FS_XATTR
  209. help
  210. Security labels support alternative access control models
  211. implemented by security modules like SELinux. This option
  212. enables an extended attribute handler for file security
  213. labels in the ReiserFS filesystem.
  214. If you are not using a security module that requires using
  215. extended attributes for file security labels, say N.
  216. config JFS_FS
  217. tristate "JFS filesystem support"
  218. select NLS
  219. help
  220. This is a port of IBM's Journaled Filesystem . More information is
  221. available in the file <file:Documentation/filesystems/jfs.txt>.
  222. If you do not intend to use the JFS filesystem, say N.
  223. config JFS_POSIX_ACL
  224. bool "JFS POSIX Access Control Lists"
  225. depends on JFS_FS
  226. select FS_POSIX_ACL
  227. help
  228. Posix Access Control Lists (ACLs) support permissions for users and
  229. groups beyond the owner/group/world scheme.
  230. To learn more about Access Control Lists, visit the Posix ACLs for
  231. Linux website <http://acl.bestbits.at/>.
  232. If you don't know what Access Control Lists are, say N
  233. config JFS_SECURITY
  234. bool "JFS Security Labels"
  235. depends on JFS_FS
  236. help
  237. Security labels support alternative access control models
  238. implemented by security modules like SELinux. This option
  239. enables an extended attribute handler for file security
  240. labels in the jfs filesystem.
  241. If you are not using a security module that requires using
  242. extended attributes for file security labels, say N.
  243. config JFS_DEBUG
  244. bool "JFS debugging"
  245. depends on JFS_FS
  246. help
  247. If you are experiencing any problems with the JFS filesystem, say
  248. Y here. This will result in additional debugging messages to be
  249. written to the system log. Under normal circumstances, this
  250. results in very little overhead.
  251. config JFS_STATISTICS
  252. bool "JFS statistics"
  253. depends on JFS_FS
  254. help
  255. Enabling this option will cause statistics from the JFS file system
  256. to be made available to the user in the /proc/fs/jfs/ directory.
  257. config FS_POSIX_ACL
  258. # Posix ACL utility routines (for now, only ext2/ext3/jfs/reiserfs)
  259. #
  260. # NOTE: you can implement Posix ACLs without these helpers (XFS does).
  261. # Never use this symbol for ifdefs.
  262. #
  263. bool
  264. default n
  265. source "fs/xfs/Kconfig"
  266. config OCFS2_FS
  267. tristate "OCFS2 file system support (EXPERIMENTAL)"
  268. depends on NET && EXPERIMENTAL
  269. select CONFIGFS_FS
  270. select JBD
  271. select CRC32
  272. select INET
  273. help
  274. OCFS2 is a general purpose extent based shared disk cluster file
  275. system with many similarities to ext3. It supports 64 bit inode
  276. numbers, and has automatically extending metadata groups which may
  277. also make it attractive for non-clustered use.
  278. You'll want to install the ocfs2-tools package in order to at least
  279. get "mount.ocfs2".
  280. Project web page: http://oss.oracle.com/projects/ocfs2
  281. Tools web page: http://oss.oracle.com/projects/ocfs2-tools
  282. OCFS2 mailing lists: http://oss.oracle.com/projects/ocfs2/mailman/
  283. Note: Features which OCFS2 does not support yet:
  284. - extended attributes
  285. - shared writeable mmap
  286. - loopback is supported, but data written will not
  287. be cluster coherent.
  288. - quotas
  289. - cluster aware flock
  290. - Directory change notification (F_NOTIFY)
  291. - Distributed Caching (F_SETLEASE/F_GETLEASE/break_lease)
  292. - POSIX ACLs
  293. - readpages / writepages (not user visible)
  294. config MINIX_FS
  295. tristate "Minix fs support"
  296. help
  297. Minix is a simple operating system used in many classes about OS's.
  298. The minix file system (method to organize files on a hard disk
  299. partition or a floppy disk) was the original file system for Linux,
  300. but has been superseded by the second extended file system ext2fs.
  301. You don't want to use the minix file system on your hard disk
  302. because of certain built-in restrictions, but it is sometimes found
  303. on older Linux floppy disks. This option will enlarge your kernel
  304. by about 28 KB. If unsure, say N.
  305. To compile this file system support as a module, choose M here: the
  306. module will be called minix. Note that the file system of your root
  307. partition (the one containing the directory /) cannot be compiled as
  308. a module.
  309. config ROMFS_FS
  310. tristate "ROM file system support"
  311. ---help---
  312. This is a very small read-only file system mainly intended for
  313. initial ram disks of installation disks, but it could be used for
  314. other read-only media as well. Read
  315. <file:Documentation/filesystems/romfs.txt> for details.
  316. To compile this file system support as a module, choose M here: the
  317. module will be called romfs. Note that the file system of your
  318. root partition (the one containing the directory /) cannot be a
  319. module.
  320. If you don't know whether you need it, then you don't need it:
  321. answer N.
  322. config INOTIFY
  323. bool "Inotify file change notification support"
  324. default y
  325. ---help---
  326. Say Y here to enable inotify support and the associated system
  327. calls. Inotify is a file change notification system and a
  328. replacement for dnotify. Inotify fixes numerous shortcomings in
  329. dnotify and introduces several new features. It allows monitoring
  330. of both files and directories via a single open fd. Other features
  331. include multiple file events, one-shot support, and unmount
  332. notification.
  333. For more information, see Documentation/filesystems/inotify.txt
  334. If unsure, say Y.
  335. config QUOTA
  336. bool "Quota support"
  337. help
  338. If you say Y here, you will be able to set per user limits for disk
  339. usage (also called disk quotas). Currently, it works for the
  340. ext2, ext3, and reiserfs file system. ext3 also supports journalled
  341. quotas for which you don't need to run quotacheck(8) after an unclean
  342. shutdown.
  343. For further details, read the Quota mini-HOWTO, available from
  344. <http://www.tldp.org/docs.html#howto>, or the documentation provided
  345. with the quota tools. Probably the quota support is only useful for
  346. multi user systems. If unsure, say N.
  347. config QFMT_V1
  348. tristate "Old quota format support"
  349. depends on QUOTA
  350. help
  351. This quota format was (is) used by kernels earlier than 2.4.22. If
  352. you have quota working and you don't want to convert to new quota
  353. format say Y here.
  354. config QFMT_V2
  355. tristate "Quota format v2 support"
  356. depends on QUOTA
  357. help
  358. This quota format allows using quotas with 32-bit UIDs/GIDs. If you
  359. need this functionality say Y here.
  360. config QUOTACTL
  361. bool
  362. depends on XFS_QUOTA || QUOTA
  363. default y
  364. config DNOTIFY
  365. bool "Dnotify support" if EMBEDDED
  366. default y
  367. help
  368. Dnotify is a directory-based per-fd file change notification system
  369. that uses signals to communicate events to user-space. There exist
  370. superior alternatives, but some applications may still rely on
  371. dnotify.
  372. Because of this, if unsure, say Y.
  373. config AUTOFS_FS
  374. tristate "Kernel automounter support"
  375. help
  376. The automounter is a tool to automatically mount remote file systems
  377. on demand. This implementation is partially kernel-based to reduce
  378. overhead in the already-mounted case; this is unlike the BSD
  379. automounter (amd), which is a pure user space daemon.
  380. To use the automounter you need the user-space tools from the autofs
  381. package; you can find the location in <file:Documentation/Changes>.
  382. You also want to answer Y to "NFS file system support", below.
  383. If you want to use the newer version of the automounter with more
  384. features, say N here and say Y to "Kernel automounter v4 support",
  385. below.
  386. To compile this support as a module, choose M here: the module will be
  387. called autofs.
  388. If you are not a part of a fairly large, distributed network, you
  389. probably do not need an automounter, and can say N here.
  390. config AUTOFS4_FS
  391. tristate "Kernel automounter version 4 support (also supports v3)"
  392. help
  393. The automounter is a tool to automatically mount remote file systems
  394. on demand. This implementation is partially kernel-based to reduce
  395. overhead in the already-mounted case; this is unlike the BSD
  396. automounter (amd), which is a pure user space daemon.
  397. To use the automounter you need the user-space tools from
  398. <ftp://ftp.kernel.org/pub/linux/daemons/autofs/v4/>; you also
  399. want to answer Y to "NFS file system support", below.
  400. To compile this support as a module, choose M here: the module will be
  401. called autofs4. You will need to add "alias autofs autofs4" to your
  402. modules configuration file.
  403. If you are not a part of a fairly large, distributed network or
  404. don't have a laptop which needs to dynamically reconfigure to the
  405. local network, you probably do not need an automounter, and can say
  406. N here.
  407. config FUSE_FS
  408. tristate "Filesystem in Userspace support"
  409. help
  410. With FUSE it is possible to implement a fully functional filesystem
  411. in a userspace program.
  412. There's also companion library: libfuse. This library along with
  413. utilities is available from the FUSE homepage:
  414. <http://fuse.sourceforge.net/>
  415. See <file:Documentation/filesystems/fuse.txt> for more information.
  416. See <file:Documentation/Changes> for needed library/utility version.
  417. If you want to develop a userspace FS, or if you want to use
  418. a filesystem based on FUSE, answer Y or M.
  419. menu "CD-ROM/DVD Filesystems"
  420. config ISO9660_FS
  421. tristate "ISO 9660 CDROM file system support"
  422. help
  423. This is the standard file system used on CD-ROMs. It was previously
  424. known as "High Sierra File System" and is called "hsfs" on other
  425. Unix systems. The so-called Rock-Ridge extensions which allow for
  426. long Unix filenames and symbolic links are also supported by this
  427. driver. If you have a CD-ROM drive and want to do more with it than
  428. just listen to audio CDs and watch its LEDs, say Y (and read
  429. <file:Documentation/filesystems/isofs.txt> and the CD-ROM-HOWTO,
  430. available from <http://www.tldp.org/docs.html#howto>), thereby
  431. enlarging your kernel by about 27 KB; otherwise say N.
  432. To compile this file system support as a module, choose M here: the
  433. module will be called isofs.
  434. config JOLIET
  435. bool "Microsoft Joliet CDROM extensions"
  436. depends on ISO9660_FS
  437. select NLS
  438. help
  439. Joliet is a Microsoft extension for the ISO 9660 CD-ROM file system
  440. which allows for long filenames in unicode format (unicode is the
  441. new 16 bit character code, successor to ASCII, which encodes the
  442. characters of almost all languages of the world; see
  443. <http://www.unicode.org/> for more information). Say Y here if you
  444. want to be able to read Joliet CD-ROMs under Linux.
  445. config ZISOFS
  446. bool "Transparent decompression extension"
  447. depends on ISO9660_FS
  448. select ZLIB_INFLATE
  449. help
  450. This is a Linux-specific extension to RockRidge which lets you store
  451. data in compressed form on a CD-ROM and have it transparently
  452. decompressed when the CD-ROM is accessed. See
  453. <http://www.kernel.org/pub/linux/utils/fs/zisofs/> for the tools
  454. necessary to create such a filesystem. Say Y here if you want to be
  455. able to read such compressed CD-ROMs.
  456. config ZISOFS_FS
  457. # for fs/nls/Config.in
  458. tristate
  459. depends on ZISOFS
  460. default ISO9660_FS
  461. config UDF_FS
  462. tristate "UDF file system support"
  463. help
  464. This is the new file system used on some CD-ROMs and DVDs. Say Y if
  465. you intend to mount DVD discs or CDRW's written in packet mode, or
  466. if written to by other UDF utilities, such as DirectCD.
  467. Please read <file:Documentation/filesystems/udf.txt>.
  468. To compile this file system support as a module, choose M here: the
  469. module will be called udf.
  470. If unsure, say N.
  471. config UDF_NLS
  472. bool
  473. default y
  474. depends on (UDF_FS=m && NLS) || (UDF_FS=y && NLS=y)
  475. endmenu
  476. menu "DOS/FAT/NT Filesystems"
  477. config FAT_FS
  478. tristate
  479. select NLS
  480. help
  481. If you want to use one of the FAT-based file systems (the MS-DOS and
  482. VFAT (Windows 95) file systems), then you must say Y or M here
  483. to include FAT support. You will then be able to mount partitions or
  484. diskettes with FAT-based file systems and transparently access the
  485. files on them, i.e. MSDOS files will look and behave just like all
  486. other Unix files.
  487. This FAT support is not a file system in itself, it only provides
  488. the foundation for the other file systems. You will have to say Y or
  489. M to at least one of "MSDOS fs support" or "VFAT fs support" in
  490. order to make use of it.
  491. Another way to read and write MSDOS floppies and hard drive
  492. partitions from within Linux (but not transparently) is with the
  493. mtools ("man mtools") program suite. You don't need to say Y here in
  494. order to do that.
  495. If you need to move large files on floppies between a DOS and a
  496. Linux box, say Y here, mount the floppy under Linux with an MSDOS
  497. file system and use GNU tar's M option. GNU tar is a program
  498. available for Unix and DOS ("man tar" or "info tar").
  499. It is now also becoming possible to read and write compressed FAT
  500. file systems; read <file:Documentation/filesystems/fat_cvf.txt> for
  501. details.
  502. The FAT support will enlarge your kernel by about 37 KB. If unsure,
  503. say Y.
  504. To compile this as a module, choose M here: the module will be called
  505. fat. Note that if you compile the FAT support as a module, you
  506. cannot compile any of the FAT-based file systems into the kernel
  507. -- they will have to be modules as well.
  508. config MSDOS_FS
  509. tristate "MSDOS fs support"
  510. select FAT_FS
  511. help
  512. This allows you to mount MSDOS partitions of your hard drive (unless
  513. they are compressed; to access compressed MSDOS partitions under
  514. Linux, you can either use the DOS emulator DOSEMU, described in the
  515. DOSEMU-HOWTO, available from
  516. <http://www.tldp.org/docs.html#howto>, or try dmsdosfs in
  517. <ftp://ibiblio.org/pub/Linux/system/filesystems/dosfs/>. If you
  518. intend to use dosemu with a non-compressed MSDOS partition, say Y
  519. here) and MSDOS floppies. This means that file access becomes
  520. transparent, i.e. the MSDOS files look and behave just like all
  521. other Unix files.
  522. If you have Windows 95 or Windows NT installed on your MSDOS
  523. partitions, you should use the VFAT file system (say Y to "VFAT fs
  524. support" below), or you will not be able to see the long filenames
  525. generated by Windows 95 / Windows NT.
  526. This option will enlarge your kernel by about 7 KB. If unsure,
  527. answer Y. This will only work if you said Y to "DOS FAT fs support"
  528. as well. To compile this as a module, choose M here: the module will
  529. be called msdos.
  530. config VFAT_FS
  531. tristate "VFAT (Windows-95) fs support"
  532. select FAT_FS
  533. help
  534. This option provides support for normal Windows file systems with
  535. long filenames. That includes non-compressed FAT-based file systems
  536. used by Windows 95, Windows 98, Windows NT 4.0, and the Unix
  537. programs from the mtools package.
  538. The VFAT support enlarges your kernel by about 10 KB and it only
  539. works if you said Y to the "DOS FAT fs support" above. Please read
  540. the file <file:Documentation/filesystems/vfat.txt> for details. If
  541. unsure, say Y.
  542. To compile this as a module, choose M here: the module will be called
  543. vfat.
  544. config FAT_DEFAULT_CODEPAGE
  545. int "Default codepage for FAT"
  546. depends on MSDOS_FS || VFAT_FS
  547. default 437
  548. help
  549. This option should be set to the codepage of your FAT filesystems.
  550. It can be overridden with the "codepage" mount option.
  551. See <file:Documentation/filesystems/vfat.txt> for more information.
  552. config FAT_DEFAULT_IOCHARSET
  553. string "Default iocharset for FAT"
  554. depends on VFAT_FS
  555. default "iso8859-1"
  556. help
  557. Set this to the default input/output character set you'd
  558. like FAT to use. It should probably match the character set
  559. that most of your FAT filesystems use, and can be overridden
  560. with the "iocharset" mount option for FAT filesystems.
  561. Note that "utf8" is not recommended for FAT filesystems.
  562. If unsure, you shouldn't set "utf8" here.
  563. See <file:Documentation/filesystems/vfat.txt> for more information.
  564. config NTFS_FS
  565. tristate "NTFS file system support"
  566. select NLS
  567. help
  568. NTFS is the file system of Microsoft Windows NT, 2000, XP and 2003.
  569. Saying Y or M here enables read support. There is partial, but
  570. safe, write support available. For write support you must also
  571. say Y to "NTFS write support" below.
  572. There are also a number of user-space tools available, called
  573. ntfsprogs. These include ntfsundelete and ntfsresize, that work
  574. without NTFS support enabled in the kernel.
  575. This is a rewrite from scratch of Linux NTFS support and replaced
  576. the old NTFS code starting with Linux 2.5.11. A backport to
  577. the Linux 2.4 kernel series is separately available as a patch
  578. from the project web site.
  579. For more information see <file:Documentation/filesystems/ntfs.txt>
  580. and <http://linux-ntfs.sourceforge.net/>.
  581. To compile this file system support as a module, choose M here: the
  582. module will be called ntfs.
  583. If you are not using Windows NT, 2000, XP or 2003 in addition to
  584. Linux on your computer it is safe to say N.
  585. config NTFS_DEBUG
  586. bool "NTFS debugging support"
  587. depends on NTFS_FS
  588. help
  589. If you are experiencing any problems with the NTFS file system, say
  590. Y here. This will result in additional consistency checks to be
  591. performed by the driver as well as additional debugging messages to
  592. be written to the system log. Note that debugging messages are
  593. disabled by default. To enable them, supply the option debug_msgs=1
  594. at the kernel command line when booting the kernel or as an option
  595. to insmod when loading the ntfs module. Once the driver is active,
  596. you can enable debugging messages by doing (as root):
  597. echo 1 > /proc/sys/fs/ntfs-debug
  598. Replacing the "1" with "0" would disable debug messages.
  599. If you leave debugging messages disabled, this results in little
  600. overhead, but enabling debug messages results in very significant
  601. slowdown of the system.
  602. When reporting bugs, please try to have available a full dump of
  603. debugging messages while the misbehaviour was occurring.
  604. config NTFS_RW
  605. bool "NTFS write support"
  606. depends on NTFS_FS
  607. help
  608. This enables the partial, but safe, write support in the NTFS driver.
  609. The only supported operation is overwriting existing files, without
  610. changing the file length. No file or directory creation, deletion or
  611. renaming is possible. Note only non-resident files can be written to
  612. so you may find that some very small files (<500 bytes or so) cannot
  613. be written to.
  614. While we cannot guarantee that it will not damage any data, we have
  615. so far not received a single report where the driver would have
  616. damaged someones data so we assume it is perfectly safe to use.
  617. Note: While write support is safe in this version (a rewrite from
  618. scratch of the NTFS support), it should be noted that the old NTFS
  619. write support, included in Linux 2.5.10 and before (since 1997),
  620. is not safe.
  621. This is currently useful with TopologiLinux. TopologiLinux is run
  622. on top of any DOS/Microsoft Windows system without partitioning your
  623. hard disk. Unlike other Linux distributions TopologiLinux does not
  624. need its own partition. For more information see
  625. <http://topologi-linux.sourceforge.net/>
  626. It is perfectly safe to say N here.
  627. endmenu
  628. menu "Pseudo filesystems"
  629. config PROC_FS
  630. bool "/proc file system support"
  631. help
  632. This is a virtual file system providing information about the status
  633. of the system. "Virtual" means that it doesn't take up any space on
  634. your hard disk: the files are created on the fly by the kernel when
  635. you try to access them. Also, you cannot read the files with older
  636. version of the program less: you need to use more or cat.
  637. It's totally cool; for example, "cat /proc/interrupts" gives
  638. information about what the different IRQs are used for at the moment
  639. (there is a small number of Interrupt ReQuest lines in your computer
  640. that are used by the attached devices to gain the CPU's attention --
  641. often a source of trouble if two devices are mistakenly configured
  642. to use the same IRQ). The program procinfo to display some
  643. information about your system gathered from the /proc file system.
  644. Before you can use the /proc file system, it has to be mounted,
  645. meaning it has to be given a location in the directory hierarchy.
  646. That location should be /proc. A command such as "mount -t proc proc
  647. /proc" or the equivalent line in /etc/fstab does the job.
  648. The /proc file system is explained in the file
  649. <file:Documentation/filesystems/proc.txt> and on the proc(5) manpage
  650. ("man 5 proc").
  651. This option will enlarge your kernel by about 67 KB. Several
  652. programs depend on this, so everyone should say Y here.
  653. config PROC_KCORE
  654. bool "/proc/kcore support" if !ARM
  655. depends on PROC_FS && MMU
  656. config PROC_VMCORE
  657. bool "/proc/vmcore support (EXPERIMENTAL)"
  658. depends on PROC_FS && EXPERIMENTAL && CRASH_DUMP
  659. help
  660. Exports the dump image of crashed kernel in ELF format.
  661. config SYSFS
  662. bool "sysfs file system support" if EMBEDDED
  663. default y
  664. help
  665. The sysfs filesystem is a virtual filesystem that the kernel uses to
  666. export internal kernel objects, their attributes, and their
  667. relationships to one another.
  668. Users can use sysfs to ascertain useful information about the running
  669. kernel, such as the devices the kernel has discovered on each bus and
  670. which driver each is bound to. sysfs can also be used to tune devices
  671. and other kernel subsystems.
  672. Some system agents rely on the information in sysfs to operate.
  673. /sbin/hotplug uses device and object attributes in sysfs to assist in
  674. delegating policy decisions, like persistantly naming devices.
  675. sysfs is currently used by the block subsystem to mount the root
  676. partition. If sysfs is disabled you must specify the boot device on
  677. the kernel boot command line via its major and minor numbers. For
  678. example, "root=03:01" for /dev/hda1.
  679. Designers of embedded systems may wish to say N here to conserve space.
  680. config TMPFS
  681. bool "Virtual memory file system support (former shm fs)"
  682. help
  683. Tmpfs is a file system which keeps all files in virtual memory.
  684. Everything in tmpfs is temporary in the sense that no files will be
  685. created on your hard drive. The files live in memory and swap
  686. space. If you unmount a tmpfs instance, everything stored therein is
  687. lost.
  688. See <file:Documentation/filesystems/tmpfs.txt> for details.
  689. config HUGETLBFS
  690. bool "HugeTLB file system support"
  691. depends X86 || IA64 || PPC64 || SPARC64 || SUPERH || BROKEN
  692. config HUGETLB_PAGE
  693. def_bool HUGETLBFS
  694. config RAMFS
  695. bool
  696. default y
  697. ---help---
  698. Ramfs is a file system which keeps all files in RAM. It allows
  699. read and write access.
  700. It is more of an programming example than a useable file system. If
  701. you need a file system which lives in RAM with limit checking use
  702. tmpfs.
  703. To compile this as a module, choose M here: the module will be called
  704. ramfs.
  705. config RELAYFS_FS
  706. tristate "Relayfs file system support"
  707. ---help---
  708. Relayfs is a high-speed data relay filesystem designed to provide
  709. an efficient mechanism for tools and facilities to relay large
  710. amounts of data from kernel space to user space.
  711. To compile this code as a module, choose M here: the module will be
  712. called relayfs.
  713. If unsure, say N.
  714. config CONFIGFS_FS
  715. tristate "Userspace-driven configuration filesystem (EXPERIMENTAL)"
  716. depends on EXPERIMENTAL
  717. help
  718. configfs is a ram-based filesystem that provides the converse
  719. of sysfs's functionality. Where sysfs is a filesystem-based
  720. view of kernel objects, configfs is a filesystem-based manager
  721. of kernel objects, or config_items.
  722. Both sysfs and configfs can and should exist together on the
  723. same system. One is not a replacement for the other.
  724. endmenu
  725. menu "Miscellaneous filesystems"
  726. config ADFS_FS
  727. tristate "ADFS file system support (EXPERIMENTAL)"
  728. depends on EXPERIMENTAL
  729. help
  730. The Acorn Disc Filing System is the standard file system of the
  731. RiscOS operating system which runs on Acorn's ARM-based Risc PC
  732. systems and the Acorn Archimedes range of machines. If you say Y
  733. here, Linux will be able to read from ADFS partitions on hard drives
  734. and from ADFS-formatted floppy discs. If you also want to be able to
  735. write to those devices, say Y to "ADFS write support" below.
  736. The ADFS partition should be the first partition (i.e.,
  737. /dev/[hs]d?1) on each of your drives. Please read the file
  738. <file:Documentation/filesystems/adfs.txt> for further details.
  739. To compile this code as a module, choose M here: the module will be
  740. called adfs.
  741. If unsure, say N.
  742. config ADFS_FS_RW
  743. bool "ADFS write support (DANGEROUS)"
  744. depends on ADFS_FS
  745. help
  746. If you say Y here, you will be able to write to ADFS partitions on
  747. hard drives and ADFS-formatted floppy disks. This is experimental
  748. codes, so if you're unsure, say N.
  749. config AFFS_FS
  750. tristate "Amiga FFS file system support (EXPERIMENTAL)"
  751. depends on EXPERIMENTAL
  752. help
  753. The Fast File System (FFS) is the common file system used on hard
  754. disks by Amiga(tm) systems since AmigaOS Version 1.3 (34.20). Say Y
  755. if you want to be able to read and write files from and to an Amiga
  756. FFS partition on your hard drive. Amiga floppies however cannot be
  757. read with this driver due to an incompatibility of the floppy
  758. controller used in an Amiga and the standard floppy controller in
  759. PCs and workstations. Read <file:Documentation/filesystems/affs.txt>
  760. and <file:fs/affs/Changes>.
  761. With this driver you can also mount disk files used by Bernd
  762. Schmidt's Un*X Amiga Emulator
  763. (<http://www.freiburg.linux.de/~uae/>).
  764. If you want to do this, you will also need to say Y or M to "Loop
  765. device support", above.
  766. To compile this file system support as a module, choose M here: the
  767. module will be called affs. If unsure, say N.
  768. config HFS_FS
  769. tristate "Apple Macintosh file system support (EXPERIMENTAL)"
  770. depends on EXPERIMENTAL
  771. select NLS
  772. help
  773. If you say Y here, you will be able to mount Macintosh-formatted
  774. floppy disks and hard drive partitions with full read-write access.
  775. Please read <file:fs/hfs/HFS.txt> to learn about the available mount
  776. options.
  777. To compile this file system support as a module, choose M here: the
  778. module will be called hfs.
  779. config HFSPLUS_FS
  780. tristate "Apple Extended HFS file system support"
  781. select NLS
  782. select NLS_UTF8
  783. help
  784. If you say Y here, you will be able to mount extended format
  785. Macintosh-formatted hard drive partitions with full read-write access.
  786. This file system is often called HFS+ and was introduced with
  787. MacOS 8. It includes all Mac specific filesystem data such as
  788. data forks and creator codes, but it also has several UNIX
  789. style features such as file ownership and permissions.
  790. config BEFS_FS
  791. tristate "BeOS file system (BeFS) support (read only) (EXPERIMENTAL)"
  792. depends on EXPERIMENTAL
  793. select NLS
  794. help
  795. The BeOS File System (BeFS) is the native file system of Be, Inc's
  796. BeOS. Notable features include support for arbitrary attributes
  797. on files and directories, and database-like indeces on selected
  798. attributes. (Also note that this driver doesn't make those features
  799. available at this time). It is a 64 bit filesystem, so it supports
  800. extremly large volumes and files.
  801. If you use this filesystem, you should also say Y to at least one
  802. of the NLS (native language support) options below.
  803. If you don't know what this is about, say N.
  804. To compile this as a module, choose M here: the module will be
  805. called befs.
  806. config BEFS_DEBUG
  807. bool "Debug BeFS"
  808. depends on BEFS_FS
  809. help
  810. If you say Y here, you can use the 'debug' mount option to enable
  811. debugging output from the driver.
  812. config BFS_FS
  813. tristate "BFS file system support (EXPERIMENTAL)"
  814. depends on EXPERIMENTAL
  815. help
  816. Boot File System (BFS) is a file system used under SCO UnixWare to
  817. allow the bootloader access to the kernel image and other important
  818. files during the boot process. It is usually mounted under /stand
  819. and corresponds to the slice marked as "STAND" in the UnixWare
  820. partition. You should say Y if you want to read or write the files
  821. on your /stand slice from within Linux. You then also need to say Y
  822. to "UnixWare slices support", below. More information about the BFS
  823. file system is contained in the file
  824. <file:Documentation/filesystems/bfs.txt>.
  825. If you don't know what this is about, say N.
  826. To compile this as a module, choose M here: the module will be called
  827. bfs. Note that the file system of your root partition (the one
  828. containing the directory /) cannot be compiled as a module.
  829. config EFS_FS
  830. tristate "EFS file system support (read only) (EXPERIMENTAL)"
  831. depends on EXPERIMENTAL
  832. help
  833. EFS is an older file system used for non-ISO9660 CD-ROMs and hard
  834. disk partitions by SGI's IRIX operating system (IRIX 6.0 and newer
  835. uses the XFS file system for hard disk partitions however).
  836. This implementation only offers read-only access. If you don't know
  837. what all this is about, it's safe to say N. For more information
  838. about EFS see its home page at <http://aeschi.ch.eu.org/efs/>.
  839. To compile the EFS file system support as a module, choose M here: the
  840. module will be called efs.
  841. config JFFS_FS
  842. tristate "Journalling Flash File System (JFFS) support"
  843. depends on MTD
  844. help
  845. JFFS is the Journaling Flash File System developed by Axis
  846. Communications in Sweden, aimed at providing a crash/powerdown-safe
  847. file system for disk-less embedded devices. Further information is
  848. available at (<http://developer.axis.com/software/jffs/>).
  849. config JFFS_FS_VERBOSE
  850. int "JFFS debugging verbosity (0 = quiet, 3 = noisy)"
  851. depends on JFFS_FS
  852. default "0"
  853. help
  854. Determines the verbosity level of the JFFS debugging messages.
  855. config JFFS_PROC_FS
  856. bool "JFFS stats available in /proc filesystem"
  857. depends on JFFS_FS && PROC_FS
  858. help
  859. Enabling this option will cause statistics from mounted JFFS file systems
  860. to be made available to the user in the /proc/fs/jffs/ directory.
  861. config JFFS2_FS
  862. tristate "Journalling Flash File System v2 (JFFS2) support"
  863. select CRC32
  864. depends on MTD
  865. help
  866. JFFS2 is the second generation of the Journalling Flash File System
  867. for use on diskless embedded devices. It provides improved wear
  868. levelling, compression and support for hard links. You cannot use
  869. this on normal block devices, only on 'MTD' devices.
  870. Further information on the design and implementation of JFFS2 is
  871. available at <http://sources.redhat.com/jffs2/>.
  872. config JFFS2_FS_DEBUG
  873. int "JFFS2 debugging verbosity (0 = quiet, 2 = noisy)"
  874. depends on JFFS2_FS
  875. default "0"
  876. help
  877. This controls the amount of debugging messages produced by the JFFS2
  878. code. Set it to zero for use in production systems. For evaluation,
  879. testing and debugging, it's advisable to set it to one. This will
  880. enable a few assertions and will print debugging messages at the
  881. KERN_DEBUG loglevel, where they won't normally be visible. Level 2
  882. is unlikely to be useful - it enables extra debugging in certain
  883. areas which at one point needed debugging, but when the bugs were
  884. located and fixed, the detailed messages were relegated to level 2.
  885. If reporting bugs, please try to have available a full dump of the
  886. messages at debug level 1 while the misbehaviour was occurring.
  887. config JFFS2_FS_WRITEBUFFER
  888. bool "JFFS2 write-buffering support"
  889. depends on JFFS2_FS
  890. default y
  891. help
  892. This enables the write-buffering support in JFFS2.
  893. This functionality is required to support JFFS2 on the following
  894. types of flash devices:
  895. - NAND flash
  896. - NOR flash with transparent ECC
  897. - DataFlash
  898. config JFFS2_SUMMARY
  899. bool "JFFS2 summary support (EXPERIMENTAL)"
  900. depends on JFFS2_FS && EXPERIMENTAL
  901. default n
  902. help
  903. This feature makes it possible to use summary information
  904. for faster filesystem mount.
  905. The summary information can be inserted into a filesystem image
  906. by the utility 'sumtool'.
  907. If unsure, say 'N'.
  908. config JFFS2_COMPRESSION_OPTIONS
  909. bool "Advanced compression options for JFFS2"
  910. depends on JFFS2_FS
  911. default n
  912. help
  913. Enabling this option allows you to explicitly choose which
  914. compression modules, if any, are enabled in JFFS2. Removing
  915. compressors and mean you cannot read existing file systems,
  916. and enabling experimental compressors can mean that you
  917. write a file system which cannot be read by a standard kernel.
  918. If unsure, you should _definitely_ say 'N'.
  919. config JFFS2_ZLIB
  920. bool "JFFS2 ZLIB compression support" if JFFS2_COMPRESSION_OPTIONS
  921. select ZLIB_INFLATE
  922. select ZLIB_DEFLATE
  923. depends on JFFS2_FS
  924. default y
  925. help
  926. Zlib is designed to be a free, general-purpose, legally unencumbered,
  927. lossless data-compression library for use on virtually any computer
  928. hardware and operating system. See <http://www.gzip.org/zlib/> for
  929. further information.
  930. Say 'Y' if unsure.
  931. config JFFS2_RTIME
  932. bool "JFFS2 RTIME compression support" if JFFS2_COMPRESSION_OPTIONS
  933. depends on JFFS2_FS
  934. default y
  935. help
  936. Rtime does manage to recompress already-compressed data. Say 'Y' if unsure.
  937. config JFFS2_RUBIN
  938. bool "JFFS2 RUBIN compression support" if JFFS2_COMPRESSION_OPTIONS
  939. depends on JFFS2_FS
  940. default n
  941. help
  942. RUBINMIPS and DYNRUBIN compressors. Say 'N' if unsure.
  943. choice
  944. prompt "JFFS2 default compression mode" if JFFS2_COMPRESSION_OPTIONS
  945. default JFFS2_CMODE_PRIORITY
  946. depends on JFFS2_FS
  947. help
  948. You can set here the default compression mode of JFFS2 from
  949. the available compression modes. Don't touch if unsure.
  950. config JFFS2_CMODE_NONE
  951. bool "no compression"
  952. help
  953. Uses no compression.
  954. config JFFS2_CMODE_PRIORITY
  955. bool "priority"
  956. help
  957. Tries the compressors in a predefinied order and chooses the first
  958. successful one.
  959. config JFFS2_CMODE_SIZE
  960. bool "size (EXPERIMENTAL)"
  961. help
  962. Tries all compressors and chooses the one which has the smallest
  963. result.
  964. endchoice
  965. config CRAMFS
  966. tristate "Compressed ROM file system support (cramfs)"
  967. select ZLIB_INFLATE
  968. help
  969. Saying Y here includes support for CramFs (Compressed ROM File
  970. System). CramFs is designed to be a simple, small, and compressed
  971. file system for ROM based embedded systems. CramFs is read-only,
  972. limited to 256MB file systems (with 16MB files), and doesn't support
  973. 16/32 bits uid/gid, hard links and timestamps.
  974. See <file:Documentation/filesystems/cramfs.txt> and
  975. <file:fs/cramfs/README> for further information.
  976. To compile this as a module, choose M here: the module will be called
  977. cramfs. Note that the root file system (the one containing the
  978. directory /) cannot be compiled as a module.
  979. If unsure, say N.
  980. config VXFS_FS
  981. tristate "FreeVxFS file system support (VERITAS VxFS(TM) compatible)"
  982. help
  983. FreeVxFS is a file system driver that support the VERITAS VxFS(TM)
  984. file system format. VERITAS VxFS(TM) is the standard file system
  985. of SCO UnixWare (and possibly others) and optionally available
  986. for Sunsoft Solaris, HP-UX and many other operating systems.
  987. Currently only readonly access is supported.
  988. NOTE: the file system type as used by mount(1), mount(2) and
  989. fstab(5) is 'vxfs' as it describes the file system format, not
  990. the actual driver.
  991. To compile this as a module, choose M here: the module will be
  992. called freevxfs. If unsure, say N.
  993. config HPFS_FS
  994. tristate "OS/2 HPFS file system support"
  995. help
  996. OS/2 is IBM's operating system for PC's, the same as Warp, and HPFS
  997. is the file system used for organizing files on OS/2 hard disk
  998. partitions. Say Y if you want to be able to read files from and
  999. write files to an OS/2 HPFS partition on your hard drive. OS/2
  1000. floppies however are in regular MSDOS format, so you don't need this
  1001. option in order to be able to read them. Read
  1002. <file:Documentation/filesystems/hpfs.txt>.
  1003. To compile this file system support as a module, choose M here: the
  1004. module will be called hpfs. If unsure, say N.
  1005. config QNX4FS_FS
  1006. tristate "QNX4 file system support (read only)"
  1007. help
  1008. This is the file system used by the real-time operating systems
  1009. QNX 4 and QNX 6 (the latter is also called QNX RTP).
  1010. Further information is available at <http://www.qnx.com/>.
  1011. Say Y if you intend to mount QNX hard disks or floppies.
  1012. Unless you say Y to "QNX4FS read-write support" below, you will
  1013. only be able to read these file systems.
  1014. To compile this file system support as a module, choose M here: the
  1015. module will be called qnx4.
  1016. If you don't know whether you need it, then you don't need it:
  1017. answer N.
  1018. config QNX4FS_RW
  1019. bool "QNX4FS write support (DANGEROUS)"
  1020. depends on QNX4FS_FS && EXPERIMENTAL && BROKEN
  1021. help
  1022. Say Y if you want to test write support for QNX4 file systems.
  1023. It's currently broken, so for now:
  1024. answer N.
  1025. config SYSV_FS
  1026. tristate "System V/Xenix/V7/Coherent file system support"
  1027. help
  1028. SCO, Xenix and Coherent are commercial Unix systems for Intel
  1029. machines, and Version 7 was used on the DEC PDP-11. Saying Y
  1030. here would allow you to read from their floppies and hard disk
  1031. partitions.
  1032. If you have floppies or hard disk partitions like that, it is likely
  1033. that they contain binaries from those other Unix systems; in order
  1034. to run these binaries, you will want to install linux-abi which is a
  1035. a set of kernel modules that lets you run SCO, Xenix, Wyse,
  1036. UnixWare, Dell Unix and System V programs under Linux. It is
  1037. available via FTP (user: ftp) from
  1038. <ftp://ftp.openlinux.org/pub/people/hch/linux-abi/>).
  1039. NOTE: that will work only for binaries from Intel-based systems;
  1040. PDP ones will have to wait until somebody ports Linux to -11 ;-)
  1041. If you only intend to mount files from some other Unix over the
  1042. network using NFS, you don't need the System V file system support
  1043. (but you need NFS file system support obviously).
  1044. Note that this option is generally not needed for floppies, since a
  1045. good portable way to transport files and directories between unixes
  1046. (and even other operating systems) is given by the tar program ("man
  1047. tar" or preferably "info tar"). Note also that this option has
  1048. nothing whatsoever to do with the option "System V IPC". Read about
  1049. the System V file system in
  1050. <file:Documentation/filesystems/sysv-fs.txt>.
  1051. Saying Y here will enlarge your kernel by about 27 KB.
  1052. To compile this as a module, choose M here: the module will be called
  1053. sysv.
  1054. If you haven't heard about all of this before, it's safe to say N.
  1055. config UFS_FS
  1056. tristate "UFS file system support (read only)"
  1057. help
  1058. BSD and derivate versions of Unix (such as SunOS, FreeBSD, NetBSD,
  1059. OpenBSD and NeXTstep) use a file system called UFS. Some System V
  1060. Unixes can create and mount hard disk partitions and diskettes using
  1061. this file system as well. Saying Y here will allow you to read from
  1062. these partitions; if you also want to write to them, say Y to the
  1063. experimental "UFS file system write support", below. Please read the
  1064. file <file:Documentation/filesystems/ufs.txt> for more information.
  1065. The recently released UFS2 variant (used in FreeBSD 5.x) is
  1066. READ-ONLY supported.
  1067. If you only intend to mount files from some other Unix over the
  1068. network using NFS, you don't need the UFS file system support (but
  1069. you need NFS file system support obviously).
  1070. Note that this option is generally not needed for floppies, since a
  1071. good portable way to transport files and directories between unixes
  1072. (and even other operating systems) is given by the tar program ("man
  1073. tar" or preferably "info tar").
  1074. When accessing NeXTstep files, you may need to convert them from the
  1075. NeXT character set to the Latin1 character set; use the program
  1076. recode ("info recode") for this purpose.
  1077. To compile the UFS file system support as a module, choose M here: the
  1078. module will be called ufs.
  1079. If you haven't heard about all of this before, it's safe to say N.
  1080. config UFS_FS_WRITE
  1081. bool "UFS file system write support (DANGEROUS)"
  1082. depends on UFS_FS && EXPERIMENTAL && BROKEN
  1083. help
  1084. Say Y here if you want to try writing to UFS partitions. This is
  1085. experimental, so you should back up your UFS partitions beforehand.
  1086. endmenu
  1087. menu "Network File Systems"
  1088. depends on NET
  1089. config NFS_FS
  1090. tristate "NFS file system support"
  1091. depends on INET
  1092. select LOCKD
  1093. select SUNRPC
  1094. select NFS_ACL_SUPPORT if NFS_V3_ACL
  1095. help
  1096. If you are connected to some other (usually local) Unix computer
  1097. (using SLIP, PLIP, PPP or Ethernet) and want to mount files residing
  1098. on that computer (the NFS server) using the Network File Sharing
  1099. protocol, say Y. "Mounting files" means that the client can access
  1100. the files with usual UNIX commands as if they were sitting on the
  1101. client's hard disk. For this to work, the server must run the
  1102. programs nfsd and mountd (but does not need to have NFS file system
  1103. support enabled in its kernel). NFS is explained in the Network
  1104. Administrator's Guide, available from
  1105. <http://www.tldp.org/docs.html#guide>, on its man page: "man
  1106. nfs", and in the NFS-HOWTO.
  1107. A superior but less widely used alternative to NFS is provided by
  1108. the Coda file system; see "Coda file system support" below.
  1109. If you say Y here, you should have said Y to TCP/IP networking also.
  1110. This option would enlarge your kernel by about 27 KB.
  1111. To compile this file system support as a module, choose M here: the
  1112. module will be called nfs.
  1113. If you are configuring a diskless machine which will mount its root
  1114. file system over NFS at boot time, say Y here and to "Kernel
  1115. level IP autoconfiguration" above and to "Root file system on NFS"
  1116. below. You cannot compile this driver as a module in this case.
  1117. There are two packages designed for booting diskless machines over
  1118. the net: netboot, available from
  1119. <http://ftp1.sourceforge.net/netboot/>, and Etherboot,
  1120. available from <http://ftp1.sourceforge.net/etherboot/>.
  1121. If you don't know what all this is about, say N.
  1122. config NFS_V3
  1123. bool "Provide NFSv3 client support"
  1124. depends on NFS_FS
  1125. help
  1126. Say Y here if you want your NFS client to be able to speak version
  1127. 3 of the NFS protocol.
  1128. If unsure, say Y.
  1129. config NFS_V3_ACL
  1130. bool "Provide client support for the NFSv3 ACL protocol extension"
  1131. depends on NFS_V3
  1132. help
  1133. Implement the NFSv3 ACL protocol extension for manipulating POSIX
  1134. Access Control Lists. The server should also be compiled with
  1135. the NFSv3 ACL protocol extension; see the CONFIG_NFSD_V3_ACL option.
  1136. If unsure, say N.
  1137. config NFS_V4
  1138. bool "Provide NFSv4 client support (EXPERIMENTAL)"
  1139. depends on NFS_FS && EXPERIMENTAL
  1140. select RPCSEC_GSS_KRB5
  1141. help
  1142. Say Y here if you want your NFS client to be able to speak the newer
  1143. version 4 of the NFS protocol.
  1144. Note: Requires auxiliary userspace daemons which may be found on
  1145. http://www.citi.umich.edu/projects/nfsv4/
  1146. If unsure, say N.
  1147. config NFS_DIRECTIO
  1148. bool "Allow direct I/O on NFS files (EXPERIMENTAL)"
  1149. depends on NFS_FS && EXPERIMENTAL
  1150. help
  1151. This option enables applications to perform uncached I/O on files
  1152. in NFS file systems using the O_DIRECT open() flag. When O_DIRECT
  1153. is set for a file, its data is not cached in the system's page
  1154. cache. Data is moved to and from user-level application buffers
  1155. directly. Unlike local disk-based file systems, NFS O_DIRECT has
  1156. no alignment restrictions.
  1157. Unless your program is designed to use O_DIRECT properly, you are
  1158. much better off allowing the NFS client to manage data caching for
  1159. you. Misusing O_DIRECT can cause poor server performance or network
  1160. storms. This kernel build option defaults OFF to avoid exposing
  1161. system administrators unwittingly to a potentially hazardous
  1162. feature.
  1163. For more details on NFS O_DIRECT, see fs/nfs/direct.c.
  1164. If unsure, say N. This reduces the size of the NFS client, and
  1165. causes open() to return EINVAL if a file residing in NFS is
  1166. opened with the O_DIRECT flag.
  1167. config NFSD
  1168. tristate "NFS server support"
  1169. depends on INET
  1170. select LOCKD
  1171. select SUNRPC
  1172. select EXPORTFS
  1173. select NFS_ACL_SUPPORT if NFSD_V3_ACL || NFSD_V2_ACL
  1174. help
  1175. If you want your Linux box to act as an NFS *server*, so that other
  1176. computers on your local network which support NFS can access certain
  1177. directories on your box transparently, you have two options: you can
  1178. use the self-contained user space program nfsd, in which case you
  1179. should say N here, or you can say Y and use the kernel based NFS
  1180. server. The advantage of the kernel based solution is that it is
  1181. faster.
  1182. In either case, you will need support software; the respective
  1183. locations are given in the file <file:Documentation/Changes> in the
  1184. NFS section.
  1185. If you say Y here, you will get support for version 2 of the NFS
  1186. protocol (NFSv2). If you also want NFSv3, say Y to the next question
  1187. as well.
  1188. Please read the NFS-HOWTO, available from
  1189. <http://www.tldp.org/docs.html#howto>.
  1190. To compile the NFS server support as a module, choose M here: the
  1191. module will be called nfsd. If unsure, say N.
  1192. config NFSD_V2_ACL
  1193. bool
  1194. depends on NFSD
  1195. config NFSD_V3
  1196. bool "Provide NFSv3 server support"
  1197. depends on NFSD
  1198. help
  1199. If you would like to include the NFSv3 server as well as the NFSv2
  1200. server, say Y here. If unsure, say Y.
  1201. config NFSD_V3_ACL
  1202. bool "Provide server support for the NFSv3 ACL protocol extension"
  1203. depends on NFSD_V3
  1204. select NFSD_V2_ACL
  1205. help
  1206. Implement the NFSv3 ACL protocol extension for manipulating POSIX
  1207. Access Control Lists on exported file systems. NFS clients should
  1208. be compiled with the NFSv3 ACL protocol extension; see the
  1209. CONFIG_NFS_V3_ACL option. If unsure, say N.
  1210. config NFSD_V4
  1211. bool "Provide NFSv4 server support (EXPERIMENTAL)"
  1212. depends on NFSD_V3 && EXPERIMENTAL
  1213. select NFSD_TCP
  1214. select CRYPTO_MD5
  1215. select CRYPTO
  1216. select FS_POSIX_ACL
  1217. help
  1218. If you would like to include the NFSv4 server as well as the NFSv2
  1219. and NFSv3 servers, say Y here. This feature is experimental, and
  1220. should only be used if you are interested in helping to test NFSv4.
  1221. If unsure, say N.
  1222. config NFSD_TCP
  1223. bool "Provide NFS server over TCP support"
  1224. depends on NFSD
  1225. default y
  1226. help
  1227. If you want your NFS server to support TCP connections, say Y here.
  1228. TCP connections usually perform better than the default UDP when
  1229. the network is lossy or congested. If unsure, say Y.
  1230. config ROOT_NFS
  1231. bool "Root file system on NFS"
  1232. depends on NFS_FS=y && IP_PNP
  1233. help
  1234. If you want your Linux box to mount its whole root file system (the
  1235. one containing the directory /) from some other computer over the
  1236. net via NFS (presumably because your box doesn't have a hard disk),
  1237. say Y. Read <file:Documentation/nfsroot.txt> for details. It is
  1238. likely that in this case, you also want to say Y to "Kernel level IP
  1239. autoconfiguration" so that your box can discover its network address
  1240. at boot time.
  1241. Most people say N here.
  1242. config LOCKD
  1243. tristate
  1244. config LOCKD_V4
  1245. bool
  1246. depends on NFSD_V3 || NFS_V3
  1247. default y
  1248. config EXPORTFS
  1249. tristate
  1250. config NFS_ACL_SUPPORT
  1251. tristate
  1252. select FS_POSIX_ACL
  1253. config NFS_COMMON
  1254. bool
  1255. depends on NFSD || NFS_FS
  1256. default y
  1257. config SUNRPC
  1258. tristate
  1259. config SUNRPC_GSS
  1260. tristate
  1261. config RPCSEC_GSS_KRB5
  1262. tristate "Secure RPC: Kerberos V mechanism (EXPERIMENTAL)"
  1263. depends on SUNRPC && EXPERIMENTAL
  1264. select SUNRPC_GSS
  1265. select CRYPTO
  1266. select CRYPTO_MD5
  1267. select CRYPTO_DES
  1268. help
  1269. Provides for secure RPC calls by means of a gss-api
  1270. mechanism based on Kerberos V5. This is required for
  1271. NFSv4.
  1272. Note: Requires an auxiliary userspace daemon which may be found on
  1273. http://www.citi.umich.edu/projects/nfsv4/
  1274. If unsure, say N.
  1275. config RPCSEC_GSS_SPKM3
  1276. tristate "Secure RPC: SPKM3 mechanism (EXPERIMENTAL)"
  1277. depends on SUNRPC && EXPERIMENTAL
  1278. select SUNRPC_GSS
  1279. select CRYPTO
  1280. select CRYPTO_MD5
  1281. select CRYPTO_DES
  1282. help
  1283. Provides for secure RPC calls by means of a gss-api
  1284. mechanism based on the SPKM3 public-key mechanism.
  1285. Note: Requires an auxiliary userspace daemon which may be found on
  1286. http://www.citi.umich.edu/projects/nfsv4/
  1287. If unsure, say N.
  1288. config SMB_FS
  1289. tristate "SMB file system support (to mount Windows shares etc.)"
  1290. depends on INET
  1291. select NLS
  1292. help
  1293. SMB (Server Message Block) is the protocol Windows for Workgroups
  1294. (WfW), Windows 95/98, Windows NT and OS/2 Lan Manager use to share
  1295. files and printers over local networks. Saying Y here allows you to
  1296. mount their file systems (often called "shares" in this context) and
  1297. access them just like any other Unix directory. Currently, this
  1298. works only if the Windows machines use TCP/IP as the underlying
  1299. transport protocol, and not NetBEUI. For details, read
  1300. <file:Documentation/filesystems/smbfs.txt> and the SMB-HOWTO,
  1301. available from <http://www.tldp.org/docs.html#howto>.
  1302. Note: if you just want your box to act as an SMB *server* and make
  1303. files and printing services available to Windows clients (which need
  1304. to have a TCP/IP stack), you don't need to say Y here; you can use
  1305. the program SAMBA (available from <ftp://ftp.samba.org/pub/samba/>)
  1306. for that.
  1307. General information about how to connect Linux, Windows machines and
  1308. Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
  1309. To compile the SMB support as a module, choose M here: the module will
  1310. be called smbfs. Most people say N, however.
  1311. config SMB_NLS_DEFAULT
  1312. bool "Use a default NLS"
  1313. depends on SMB_FS
  1314. help
  1315. Enabling this will make smbfs use nls translations by default. You
  1316. need to specify the local charset (CONFIG_NLS_DEFAULT) in the nls
  1317. settings and you need to give the default nls for the SMB server as
  1318. CONFIG_SMB_NLS_REMOTE.
  1319. The nls settings can be changed at mount time, if your smbmount
  1320. supports that, using the codepage and iocharset parameters.
  1321. smbmount from samba 2.2.0 or later supports this.
  1322. config SMB_NLS_REMOTE
  1323. string "Default Remote NLS Option"
  1324. depends on SMB_NLS_DEFAULT
  1325. default "cp437"
  1326. help
  1327. This setting allows you to specify a default value for which
  1328. codepage the server uses. If this field is left blank no
  1329. translations will be done by default. The local codepage/charset
  1330. default to CONFIG_NLS_DEFAULT.
  1331. The nls settings can be changed at mount time, if your smbmount
  1332. supports that, using the codepage and iocharset parameters.
  1333. smbmount from samba 2.2.0 or later supports this.
  1334. config CIFS
  1335. tristate "CIFS support (advanced network filesystem for Samba, Window and other CIFS compliant servers)"
  1336. depends on INET
  1337. select NLS
  1338. help
  1339. This is the client VFS module for the Common Internet File System
  1340. (CIFS) protocol which is the successor to the Server Message Block
  1341. (SMB) protocol, the native file sharing mechanism for most early
  1342. PC operating systems. The CIFS protocol is fully supported by
  1343. file servers such as Windows 2000 (including Windows 2003, NT 4
  1344. and Windows XP) as well by Samba (which provides excellent CIFS
  1345. server support for Linux and many other operating systems). Limited
  1346. support for Windows ME and similar servers is provided as well.
  1347. You must use the smbfs client filesystem to access older SMB servers
  1348. such as OS/2 and DOS.
  1349. The intent of the cifs module is to provide an advanced
  1350. network file system client for mounting to CIFS compliant servers,
  1351. including support for dfs (hierarchical name space), secure per-user
  1352. session establishment, safe distributed caching (oplock), optional
  1353. packet signing, Unicode and other internationalization improvements,
  1354. and optional Winbind (nsswitch) integration. You do not need to enable
  1355. cifs if running only a (Samba) server. It is possible to enable both
  1356. smbfs and cifs (e.g. if you are using CIFS for accessing Windows 2003
  1357. and Samba 3 servers, and smbfs for accessing old servers). If you need
  1358. to mount to Samba or Windows from this machine, say Y.
  1359. config CIFS_STATS
  1360. bool "CIFS statistics"
  1361. depends on CIFS
  1362. help
  1363. Enabling this option will cause statistics for each server share
  1364. mounted by the cifs client to be displayed in /proc/fs/cifs/Stats
  1365. config CIFS_STATS2
  1366. bool "CIFS extended statistics"
  1367. depends on CIFS_STATS
  1368. help
  1369. Enabling this option will allow more detailed statistics on SMB
  1370. request timing to be displayed in /proc/fs/cifs/DebugData and also
  1371. allow optional logging of slow responses to dmesg (depending on the
  1372. value of /proc/fs/cifs/cifsFYI, see fs/cifs/README for more details).
  1373. These additional statistics may have a minor effect on performance
  1374. and memory utilization.
  1375. Unless you are a developer or are doing network performance analysis
  1376. or tuning, say N.
  1377. config CIFS_XATTR
  1378. bool "CIFS extended attributes"
  1379. depends on CIFS
  1380. help
  1381. Extended attributes are name:value pairs associated with inodes by
  1382. the kernel or by users (see the attr(5) manual page, or visit
  1383. <http://acl.bestbits.at/> for details). CIFS maps the name of
  1384. extended attributes beginning with the user namespace prefix
  1385. to SMB/CIFS EAs. EAs are stored on Windows servers without the
  1386. user namespace prefix, but their names are seen by Linux cifs clients
  1387. prefaced by the user namespace prefix. The system namespace
  1388. (used by some filesystems to store ACLs) is not supported at
  1389. this time.
  1390. If unsure, say N.
  1391. config CIFS_POSIX
  1392. bool "CIFS POSIX Extensions"
  1393. depends on CIFS_XATTR
  1394. help
  1395. Enabling this option will cause the cifs client to attempt to
  1396. negotiate a newer dialect with servers, such as Samba 3.0.5
  1397. or later, that optionally can handle more POSIX like (rather
  1398. than Windows like) file behavior. It also enables
  1399. support for POSIX ACLs (getfacl and setfacl) to servers
  1400. (such as Samba 3.10 and later) which can negotiate
  1401. CIFS POSIX ACL support. If unsure, say N.
  1402. config CIFS_EXPERIMENTAL
  1403. bool "CIFS Experimental Features (EXPERIMENTAL)"
  1404. depends on CIFS && EXPERIMENTAL
  1405. help
  1406. Enables cifs features under testing. These features are
  1407. experimental and currently include support for writepages
  1408. (multipage writebehind performance improvements) and directory
  1409. change notification ie fcntl(F_DNOTIFY) as well as some security
  1410. improvements. Some also depend on setting at runtime the
  1411. pseudo-file /proc/fs/cifs/Experimental (which is disabled by
  1412. default). See the file fs/cifs/README for more details.
  1413. If unsure, say N.
  1414. config CIFS_UPCALL
  1415. bool "CIFS Kerberos/SPNEGO advanced session setup (EXPERIMENTAL)"
  1416. depends on CIFS_EXPERIMENTAL
  1417. select CONNECTOR
  1418. help
  1419. Enables an upcall mechanism for CIFS which will be used to contact
  1420. userspace helper utilities to provide SPNEGO packaged Kerberos
  1421. tickets which are needed to mount to certain secure servers
  1422. (for which more secure Kerberos authentication is required). If
  1423. unsure, say N.
  1424. config NCP_FS
  1425. tristate "NCP file system support (to mount NetWare volumes)"
  1426. depends on IPX!=n || INET
  1427. help
  1428. NCP (NetWare Core Protocol) is a protocol that runs over IPX and is
  1429. used by Novell NetWare clients to talk to file servers. It is to
  1430. IPX what NFS is to TCP/IP, if that helps. Saying Y here allows you
  1431. to mount NetWare file server volumes and to access them just like
  1432. any other Unix directory. For details, please read the file
  1433. <file:Documentation/filesystems/ncpfs.txt> in the kernel source and
  1434. the IPX-HOWTO from <http://www.tldp.org/docs.html#howto>.
  1435. You do not have to say Y here if you want your Linux box to act as a
  1436. file *server* for Novell NetWare clients.
  1437. General information about how to connect Linux, Windows machines and
  1438. Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
  1439. To compile this as a module, choose M here: the module will be called
  1440. ncpfs. Say N unless you are connected to a Novell network.
  1441. source "fs/ncpfs/Kconfig"
  1442. config CODA_FS
  1443. tristate "Coda file system support (advanced network fs)"
  1444. depends on INET
  1445. help
  1446. Coda is an advanced network file system, similar to NFS in that it
  1447. enables you to mount file systems of a remote server and access them
  1448. with regular Unix commands as if they were sitting on your hard
  1449. disk. Coda has several advantages over NFS: support for
  1450. disconnected operation (e.g. for laptops), read/write server
  1451. replication, security model for authentication and encryption,
  1452. persistent client caches and write back caching.
  1453. If you say Y here, your Linux box will be able to act as a Coda
  1454. *client*. You will need user level code as well, both for the
  1455. client and server. Servers are currently user level, i.e. they need
  1456. no kernel support. Please read
  1457. <file:Documentation/filesystems/coda.txt> and check out the Coda
  1458. home page <http://www.coda.cs.cmu.edu/>.
  1459. To compile the coda client support as a module, choose M here: the
  1460. module will be called coda.
  1461. config CODA_FS_OLD_API
  1462. bool "Use 96-bit Coda file identifiers"
  1463. depends on CODA_FS
  1464. help
  1465. A new kernel-userspace API had to be introduced for Coda v6.0
  1466. to support larger 128-bit file identifiers as needed by the
  1467. new realms implementation.
  1468. However this new API is not backward compatible with older
  1469. clients. If you really need to run the old Coda userspace
  1470. cache manager then say Y.
  1471. For most cases you probably want to say N.
  1472. config AFS_FS
  1473. # for fs/nls/Config.in
  1474. tristate "Andrew File System support (AFS) (Experimental)"
  1475. depends on INET && EXPERIMENTAL
  1476. select RXRPC
  1477. help
  1478. If you say Y here, you will get an experimental Andrew File System
  1479. driver. It currently only supports unsecured read-only AFS access.
  1480. See <file:Documentation/filesystems/afs.txt> for more intormation.
  1481. If unsure, say N.
  1482. config RXRPC
  1483. tristate
  1484. config 9P_FS
  1485. tristate "Plan 9 Resource Sharing Support (9P2000) (Experimental)"
  1486. depends on INET && EXPERIMENTAL
  1487. help
  1488. If you say Y here, you will get experimental support for
  1489. Plan 9 resource sharing via the 9P2000 protocol.
  1490. See <http://v9fs.sf.net> for more information.
  1491. If unsure, say N.
  1492. endmenu
  1493. menu "Partition Types"
  1494. source "fs/partitions/Kconfig"
  1495. endmenu
  1496. source "fs/nls/Kconfig"
  1497. endmenu