Kconfig 76 KB

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