Kconfig 65 KB

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