Kconfig 74 KB

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