Kconfig 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  1. #
  2. # File system configuration
  3. #
  4. menu "File systems"
  5. if BLOCK
  6. source "fs/ext2/Kconfig"
  7. source "fs/ext3/Kconfig"
  8. source "fs/ext4/Kconfig"
  9. config FS_XIP
  10. # execute in place
  11. bool
  12. depends on EXT2_FS_XIP
  13. default y
  14. source "fs/jbd/Kconfig"
  15. source "fs/jbd2/Kconfig"
  16. config FS_MBCACHE
  17. # Meta block cache for Extended Attributes (ext2/ext3/ext4)
  18. tristate
  19. default y if EXT2_FS=y && EXT2_FS_XATTR
  20. default y if EXT3_FS=y && EXT3_FS_XATTR
  21. default y if EXT4_FS=y && EXT4_FS_XATTR
  22. default m if EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR
  23. source "fs/reiserfs/Kconfig"
  24. source "fs/jfs/Kconfig"
  25. config FS_POSIX_ACL
  26. # Posix ACL utility routines (for now, only ext2/ext3/jfs/reiserfs/nfs4)
  27. #
  28. # NOTE: you can implement Posix ACLs without these helpers (XFS does).
  29. # Never use this symbol for ifdefs.
  30. #
  31. bool
  32. default n
  33. config FILE_LOCKING
  34. bool "Enable POSIX file locking API" if EMBEDDED
  35. default y
  36. help
  37. This option enables standard file locking support, required
  38. for filesystems like NFS and for the flock() system
  39. call. Disabling this option saves about 11k.
  40. source "fs/xfs/Kconfig"
  41. source "fs/gfs2/Kconfig"
  42. source "fs/ocfs2/Kconfig"
  43. source "fs/btrfs/Kconfig"
  44. endif # BLOCK
  45. source "fs/notify/Kconfig"
  46. config QUOTA
  47. bool "Quota support"
  48. help
  49. If you say Y here, you will be able to set per user limits for disk
  50. usage (also called disk quotas). Currently, it works for the
  51. ext2, ext3, and reiserfs file system. ext3 also supports journalled
  52. quotas for which you don't need to run quotacheck(8) after an unclean
  53. shutdown.
  54. For further details, read the Quota mini-HOWTO, available from
  55. <http://www.tldp.org/docs.html#howto>, or the documentation provided
  56. with the quota tools. Probably the quota support is only useful for
  57. multi user systems. If unsure, say N.
  58. config QUOTA_NETLINK_INTERFACE
  59. bool "Report quota messages through netlink interface"
  60. depends on QUOTA && NET
  61. help
  62. If you say Y here, quota warnings (about exceeding softlimit, reaching
  63. hardlimit, etc.) will be reported through netlink interface. If unsure,
  64. say Y.
  65. config PRINT_QUOTA_WARNING
  66. bool "Print quota warnings to console (OBSOLETE)"
  67. depends on QUOTA
  68. default y
  69. help
  70. If you say Y here, quota warnings (about exceeding softlimit, reaching
  71. hardlimit, etc.) will be printed to the process' controlling terminal.
  72. Note that this behavior is currently deprecated and may go away in
  73. future. Please use notification via netlink socket instead.
  74. # Generic support for tree structured quota files. Seleted when needed.
  75. config QUOTA_TREE
  76. tristate
  77. config QFMT_V1
  78. tristate "Old quota format support"
  79. depends on QUOTA
  80. help
  81. This quota format was (is) used by kernels earlier than 2.4.22. If
  82. you have quota working and you don't want to convert to new quota
  83. format say Y here.
  84. config QFMT_V2
  85. tristate "Quota format v2 support"
  86. depends on QUOTA
  87. select QUOTA_TREE
  88. help
  89. This quota format allows using quotas with 32-bit UIDs/GIDs. If you
  90. need this functionality say Y here.
  91. config QUOTACTL
  92. bool
  93. depends on XFS_QUOTA || QUOTA
  94. default y
  95. source "fs/autofs/Kconfig"
  96. source "fs/autofs4/Kconfig"
  97. source "fs/fuse/Kconfig"
  98. config GENERIC_ACL
  99. bool
  100. select FS_POSIX_ACL
  101. if BLOCK
  102. menu "CD-ROM/DVD Filesystems"
  103. config ISO9660_FS
  104. tristate "ISO 9660 CDROM file system support"
  105. help
  106. This is the standard file system used on CD-ROMs. It was previously
  107. known as "High Sierra File System" and is called "hsfs" on other
  108. Unix systems. The so-called Rock-Ridge extensions which allow for
  109. long Unix filenames and symbolic links are also supported by this
  110. driver. If you have a CD-ROM drive and want to do more with it than
  111. just listen to audio CDs and watch its LEDs, say Y (and read
  112. <file:Documentation/filesystems/isofs.txt> and the CD-ROM-HOWTO,
  113. available from <http://www.tldp.org/docs.html#howto>), thereby
  114. enlarging your kernel by about 27 KB; otherwise say N.
  115. To compile this file system support as a module, choose M here: the
  116. module will be called isofs.
  117. config JOLIET
  118. bool "Microsoft Joliet CDROM extensions"
  119. depends on ISO9660_FS
  120. select NLS
  121. help
  122. Joliet is a Microsoft extension for the ISO 9660 CD-ROM file system
  123. which allows for long filenames in unicode format (unicode is the
  124. new 16 bit character code, successor to ASCII, which encodes the
  125. characters of almost all languages of the world; see
  126. <http://www.unicode.org/> for more information). Say Y here if you
  127. want to be able to read Joliet CD-ROMs under Linux.
  128. config ZISOFS
  129. bool "Transparent decompression extension"
  130. depends on ISO9660_FS
  131. select ZLIB_INFLATE
  132. help
  133. This is a Linux-specific extension to RockRidge which lets you store
  134. data in compressed form on a CD-ROM and have it transparently
  135. decompressed when the CD-ROM is accessed. See
  136. <http://www.kernel.org/pub/linux/utils/fs/zisofs/> for the tools
  137. necessary to create such a filesystem. Say Y here if you want to be
  138. able to read such compressed CD-ROMs.
  139. config UDF_FS
  140. tristate "UDF file system support"
  141. select CRC_ITU_T
  142. help
  143. This is the new file system used on some CD-ROMs and DVDs. Say Y if
  144. you intend to mount DVD discs or CDRW's written in packet mode, or
  145. if written to by other UDF utilities, such as DirectCD.
  146. Please read <file:Documentation/filesystems/udf.txt>.
  147. To compile this file system support as a module, choose M here: the
  148. module will be called udf.
  149. If unsure, say N.
  150. config UDF_NLS
  151. bool
  152. default y
  153. depends on (UDF_FS=m && NLS) || (UDF_FS=y && NLS=y)
  154. endmenu
  155. endif # BLOCK
  156. if BLOCK
  157. menu "DOS/FAT/NT Filesystems"
  158. config FAT_FS
  159. tristate
  160. select NLS
  161. help
  162. If you want to use one of the FAT-based file systems (the MS-DOS and
  163. VFAT (Windows 95) file systems), then you must say Y or M here
  164. to include FAT support. You will then be able to mount partitions or
  165. diskettes with FAT-based file systems and transparently access the
  166. files on them, i.e. MSDOS files will look and behave just like all
  167. other Unix files.
  168. This FAT support is not a file system in itself, it only provides
  169. the foundation for the other file systems. You will have to say Y or
  170. M to at least one of "MSDOS fs support" or "VFAT fs support" in
  171. order to make use of it.
  172. Another way to read and write MSDOS floppies and hard drive
  173. partitions from within Linux (but not transparently) is with the
  174. mtools ("man mtools") program suite. You don't need to say Y here in
  175. order to do that.
  176. If you need to move large files on floppies between a DOS and a
  177. Linux box, say Y here, mount the floppy under Linux with an MSDOS
  178. file system and use GNU tar's M option. GNU tar is a program
  179. available for Unix and DOS ("man tar" or "info tar").
  180. The FAT support will enlarge your kernel by about 37 KB. If unsure,
  181. say Y.
  182. To compile this as a module, choose M here: the module will be called
  183. fat. Note that if you compile the FAT support as a module, you
  184. cannot compile any of the FAT-based file systems into the kernel
  185. -- they will have to be modules as well.
  186. config MSDOS_FS
  187. tristate "MSDOS fs support"
  188. select FAT_FS
  189. help
  190. This allows you to mount MSDOS partitions of your hard drive (unless
  191. they are compressed; to access compressed MSDOS partitions under
  192. Linux, you can either use the DOS emulator DOSEMU, described in the
  193. DOSEMU-HOWTO, available from
  194. <http://www.tldp.org/docs.html#howto>, or try dmsdosfs in
  195. <ftp://ibiblio.org/pub/Linux/system/filesystems/dosfs/>. If you
  196. intend to use dosemu with a non-compressed MSDOS partition, say Y
  197. here) and MSDOS floppies. This means that file access becomes
  198. transparent, i.e. the MSDOS files look and behave just like all
  199. other Unix files.
  200. If you have Windows 95 or Windows NT installed on your MSDOS
  201. partitions, you should use the VFAT file system (say Y to "VFAT fs
  202. support" below), or you will not be able to see the long filenames
  203. generated by Windows 95 / Windows NT.
  204. This option will enlarge your kernel by about 7 KB. If unsure,
  205. answer Y. This will only work if you said Y to "DOS FAT fs support"
  206. as well. To compile this as a module, choose M here: the module will
  207. be called msdos.
  208. config VFAT_FS
  209. tristate "VFAT (Windows-95) fs support"
  210. select FAT_FS
  211. help
  212. This option provides support for normal Windows file systems with
  213. long filenames. That includes non-compressed FAT-based file systems
  214. used by Windows 95, Windows 98, Windows NT 4.0, and the Unix
  215. programs from the mtools package.
  216. The VFAT support enlarges your kernel by about 10 KB and it only
  217. works if you said Y to the "DOS FAT fs support" above. Please read
  218. the file <file:Documentation/filesystems/vfat.txt> for details. If
  219. unsure, say Y.
  220. To compile this as a module, choose M here: the module will be called
  221. vfat.
  222. config FAT_DEFAULT_CODEPAGE
  223. int "Default codepage for FAT"
  224. depends on MSDOS_FS || VFAT_FS
  225. default 437
  226. help
  227. This option should be set to the codepage of your FAT filesystems.
  228. It can be overridden with the "codepage" mount option.
  229. See <file:Documentation/filesystems/vfat.txt> for more information.
  230. config FAT_DEFAULT_IOCHARSET
  231. string "Default iocharset for FAT"
  232. depends on VFAT_FS
  233. default "iso8859-1"
  234. help
  235. Set this to the default input/output character set you'd
  236. like FAT to use. It should probably match the character set
  237. that most of your FAT filesystems use, and can be overridden
  238. with the "iocharset" mount option for FAT filesystems.
  239. Note that "utf8" is not recommended for FAT filesystems.
  240. If unsure, you shouldn't set "utf8" here.
  241. See <file:Documentation/filesystems/vfat.txt> for more information.
  242. config NTFS_FS
  243. tristate "NTFS file system support"
  244. select NLS
  245. help
  246. NTFS is the file system of Microsoft Windows NT, 2000, XP and 2003.
  247. Saying Y or M here enables read support. There is partial, but
  248. safe, write support available. For write support you must also
  249. say Y to "NTFS write support" below.
  250. There are also a number of user-space tools available, called
  251. ntfsprogs. These include ntfsundelete and ntfsresize, that work
  252. without NTFS support enabled in the kernel.
  253. This is a rewrite from scratch of Linux NTFS support and replaced
  254. the old NTFS code starting with Linux 2.5.11. A backport to
  255. the Linux 2.4 kernel series is separately available as a patch
  256. from the project web site.
  257. For more information see <file:Documentation/filesystems/ntfs.txt>
  258. and <http://www.linux-ntfs.org/>.
  259. To compile this file system support as a module, choose M here: the
  260. module will be called ntfs.
  261. If you are not using Windows NT, 2000, XP or 2003 in addition to
  262. Linux on your computer it is safe to say N.
  263. config NTFS_DEBUG
  264. bool "NTFS debugging support"
  265. depends on NTFS_FS
  266. help
  267. If you are experiencing any problems with the NTFS file system, say
  268. Y here. This will result in additional consistency checks to be
  269. performed by the driver as well as additional debugging messages to
  270. be written to the system log. Note that debugging messages are
  271. disabled by default. To enable them, supply the option debug_msgs=1
  272. at the kernel command line when booting the kernel or as an option
  273. to insmod when loading the ntfs module. Once the driver is active,
  274. you can enable debugging messages by doing (as root):
  275. echo 1 > /proc/sys/fs/ntfs-debug
  276. Replacing the "1" with "0" would disable debug messages.
  277. If you leave debugging messages disabled, this results in little
  278. overhead, but enabling debug messages results in very significant
  279. slowdown of the system.
  280. When reporting bugs, please try to have available a full dump of
  281. debugging messages while the misbehaviour was occurring.
  282. config NTFS_RW
  283. bool "NTFS write support"
  284. depends on NTFS_FS
  285. help
  286. This enables the partial, but safe, write support in the NTFS driver.
  287. The only supported operation is overwriting existing files, without
  288. changing the file length. No file or directory creation, deletion or
  289. renaming is possible. Note only non-resident files can be written to
  290. so you may find that some very small files (<500 bytes or so) cannot
  291. be written to.
  292. While we cannot guarantee that it will not damage any data, we have
  293. so far not received a single report where the driver would have
  294. damaged someones data so we assume it is perfectly safe to use.
  295. Note: While write support is safe in this version (a rewrite from
  296. scratch of the NTFS support), it should be noted that the old NTFS
  297. write support, included in Linux 2.5.10 and before (since 1997),
  298. is not safe.
  299. This is currently useful with TopologiLinux. TopologiLinux is run
  300. on top of any DOS/Microsoft Windows system without partitioning your
  301. hard disk. Unlike other Linux distributions TopologiLinux does not
  302. need its own partition. For more information see
  303. <http://topologi-linux.sourceforge.net/>
  304. It is perfectly safe to say N here.
  305. endmenu
  306. endif # BLOCK
  307. menu "Pseudo filesystems"
  308. source "fs/proc/Kconfig"
  309. config SYSFS
  310. bool "sysfs file system support" if EMBEDDED
  311. default y
  312. help
  313. The sysfs filesystem is a virtual filesystem that the kernel uses to
  314. export internal kernel objects, their attributes, and their
  315. relationships to one another.
  316. Users can use sysfs to ascertain useful information about the running
  317. kernel, such as the devices the kernel has discovered on each bus and
  318. which driver each is bound to. sysfs can also be used to tune devices
  319. and other kernel subsystems.
  320. Some system agents rely on the information in sysfs to operate.
  321. /sbin/hotplug uses device and object attributes in sysfs to assist in
  322. delegating policy decisions, like persistently naming devices.
  323. sysfs is currently used by the block subsystem to mount the root
  324. partition. If sysfs is disabled you must specify the boot device on
  325. the kernel boot command line via its major and minor numbers. For
  326. example, "root=03:01" for /dev/hda1.
  327. Designers of embedded systems may wish to say N here to conserve space.
  328. config TMPFS
  329. bool "Virtual memory file system support (former shm fs)"
  330. help
  331. Tmpfs is a file system which keeps all files in virtual memory.
  332. Everything in tmpfs is temporary in the sense that no files will be
  333. created on your hard drive. The files live in memory and swap
  334. space. If you unmount a tmpfs instance, everything stored therein is
  335. lost.
  336. See <file:Documentation/filesystems/tmpfs.txt> for details.
  337. config TMPFS_POSIX_ACL
  338. bool "Tmpfs POSIX Access Control Lists"
  339. depends on TMPFS
  340. select GENERIC_ACL
  341. help
  342. POSIX Access Control Lists (ACLs) support permissions for users and
  343. groups beyond the owner/group/world scheme.
  344. To learn more about Access Control Lists, visit the POSIX ACLs for
  345. Linux website <http://acl.bestbits.at/>.
  346. If you don't know what Access Control Lists are, say N.
  347. config HUGETLBFS
  348. bool "HugeTLB file system support"
  349. depends on X86 || IA64 || PPC64 || SPARC64 || (SUPERH && MMU) || \
  350. (S390 && 64BIT) || BROKEN
  351. help
  352. hugetlbfs is a filesystem backing for HugeTLB pages, based on
  353. ramfs. For architectures that support it, say Y here and read
  354. <file:Documentation/vm/hugetlbpage.txt> for details.
  355. If unsure, say N.
  356. config HUGETLB_PAGE
  357. def_bool HUGETLBFS
  358. config CONFIGFS_FS
  359. tristate "Userspace-driven configuration filesystem"
  360. depends on SYSFS
  361. help
  362. configfs is a ram-based filesystem that provides the converse
  363. of sysfs's functionality. Where sysfs is a filesystem-based
  364. view of kernel objects, configfs is a filesystem-based manager
  365. of kernel objects, or config_items.
  366. Both sysfs and configfs can and should exist together on the
  367. same system. One is not a replacement for the other.
  368. endmenu
  369. menuconfig MISC_FILESYSTEMS
  370. bool "Miscellaneous filesystems"
  371. default y
  372. ---help---
  373. Say Y here to get to see options for various miscellaneous
  374. filesystems, such as filesystems that came from other
  375. operating systems.
  376. This option alone does not add any kernel code.
  377. If you say N, all options in this submenu will be skipped and
  378. disabled; if unsure, say Y here.
  379. if MISC_FILESYSTEMS
  380. config ADFS_FS
  381. tristate "ADFS file system support (EXPERIMENTAL)"
  382. depends on BLOCK && EXPERIMENTAL
  383. help
  384. The Acorn Disc Filing System is the standard file system of the
  385. RiscOS operating system which runs on Acorn's ARM-based Risc PC
  386. systems and the Acorn Archimedes range of machines. If you say Y
  387. here, Linux will be able to read from ADFS partitions on hard drives
  388. and from ADFS-formatted floppy discs. If you also want to be able to
  389. write to those devices, say Y to "ADFS write support" below.
  390. The ADFS partition should be the first partition (i.e.,
  391. /dev/[hs]d?1) on each of your drives. Please read the file
  392. <file:Documentation/filesystems/adfs.txt> for further details.
  393. To compile this code as a module, choose M here: the module will be
  394. called adfs.
  395. If unsure, say N.
  396. config ADFS_FS_RW
  397. bool "ADFS write support (DANGEROUS)"
  398. depends on ADFS_FS
  399. help
  400. If you say Y here, you will be able to write to ADFS partitions on
  401. hard drives and ADFS-formatted floppy disks. This is experimental
  402. codes, so if you're unsure, say N.
  403. config AFFS_FS
  404. tristate "Amiga FFS file system support (EXPERIMENTAL)"
  405. depends on BLOCK && EXPERIMENTAL
  406. help
  407. The Fast File System (FFS) is the common file system used on hard
  408. disks by Amiga(tm) systems since AmigaOS Version 1.3 (34.20). Say Y
  409. if you want to be able to read and write files from and to an Amiga
  410. FFS partition on your hard drive. Amiga floppies however cannot be
  411. read with this driver due to an incompatibility of the floppy
  412. controller used in an Amiga and the standard floppy controller in
  413. PCs and workstations. Read <file:Documentation/filesystems/affs.txt>
  414. and <file:fs/affs/Changes>.
  415. With this driver you can also mount disk files used by Bernd
  416. Schmidt's Un*X Amiga Emulator
  417. (<http://www.freiburg.linux.de/~uae/>).
  418. If you want to do this, you will also need to say Y or M to "Loop
  419. device support", above.
  420. To compile this file system support as a module, choose M here: the
  421. module will be called affs. If unsure, say N.
  422. config ECRYPT_FS
  423. tristate "eCrypt filesystem layer support (EXPERIMENTAL)"
  424. depends on EXPERIMENTAL && KEYS && CRYPTO && NET
  425. help
  426. Encrypted filesystem that operates on the VFS layer. See
  427. <file:Documentation/filesystems/ecryptfs.txt> to learn more about
  428. eCryptfs. Userspace components are required and can be
  429. obtained from <http://ecryptfs.sf.net>.
  430. To compile this file system support as a module, choose M here: the
  431. module will be called ecryptfs.
  432. config HFS_FS
  433. tristate "Apple Macintosh file system support (EXPERIMENTAL)"
  434. depends on BLOCK && EXPERIMENTAL
  435. select NLS
  436. help
  437. If you say Y here, you will be able to mount Macintosh-formatted
  438. floppy disks and hard drive partitions with full read-write access.
  439. Please read <file:Documentation/filesystems/hfs.txt> to learn about
  440. the available mount options.
  441. To compile this file system support as a module, choose M here: the
  442. module will be called hfs.
  443. config HFSPLUS_FS
  444. tristate "Apple Extended HFS file system support"
  445. depends on BLOCK
  446. select NLS
  447. select NLS_UTF8
  448. help
  449. If you say Y here, you will be able to mount extended format
  450. Macintosh-formatted hard drive partitions with full read-write access.
  451. This file system is often called HFS+ and was introduced with
  452. MacOS 8. It includes all Mac specific filesystem data such as
  453. data forks and creator codes, but it also has several UNIX
  454. style features such as file ownership and permissions.
  455. config BEFS_FS
  456. tristate "BeOS file system (BeFS) support (read only) (EXPERIMENTAL)"
  457. depends on BLOCK && EXPERIMENTAL
  458. select NLS
  459. help
  460. The BeOS File System (BeFS) is the native file system of Be, Inc's
  461. BeOS. Notable features include support for arbitrary attributes
  462. on files and directories, and database-like indices on selected
  463. attributes. (Also note that this driver doesn't make those features
  464. available at this time). It is a 64 bit filesystem, so it supports
  465. extremely large volumes and files.
  466. If you use this filesystem, you should also say Y to at least one
  467. of the NLS (native language support) options below.
  468. If you don't know what this is about, say N.
  469. To compile this as a module, choose M here: the module will be
  470. called befs.
  471. config BEFS_DEBUG
  472. bool "Debug BeFS"
  473. depends on BEFS_FS
  474. help
  475. If you say Y here, you can use the 'debug' mount option to enable
  476. debugging output from the driver.
  477. config BFS_FS
  478. tristate "BFS file system support (EXPERIMENTAL)"
  479. depends on BLOCK && EXPERIMENTAL
  480. help
  481. Boot File System (BFS) is a file system used under SCO UnixWare to
  482. allow the bootloader access to the kernel image and other important
  483. files during the boot process. It is usually mounted under /stand
  484. and corresponds to the slice marked as "STAND" in the UnixWare
  485. partition. You should say Y if you want to read or write the files
  486. on your /stand slice from within Linux. You then also need to say Y
  487. to "UnixWare slices support", below. More information about the BFS
  488. file system is contained in the file
  489. <file:Documentation/filesystems/bfs.txt>.
  490. If you don't know what this is about, say N.
  491. To compile this as a module, choose M here: the module will be called
  492. bfs. Note that the file system of your root partition (the one
  493. containing the directory /) cannot be compiled as a module.
  494. config EFS_FS
  495. tristate "EFS file system support (read only) (EXPERIMENTAL)"
  496. depends on BLOCK && EXPERIMENTAL
  497. help
  498. EFS is an older file system used for non-ISO9660 CD-ROMs and hard
  499. disk partitions by SGI's IRIX operating system (IRIX 6.0 and newer
  500. uses the XFS file system for hard disk partitions however).
  501. This implementation only offers read-only access. If you don't know
  502. what all this is about, it's safe to say N. For more information
  503. about EFS see its home page at <http://aeschi.ch.eu.org/efs/>.
  504. To compile the EFS file system support as a module, choose M here: the
  505. module will be called efs.
  506. source "fs/jffs2/Kconfig"
  507. # UBIFS File system configuration
  508. source "fs/ubifs/Kconfig"
  509. config CRAMFS
  510. tristate "Compressed ROM file system support (cramfs)"
  511. depends on BLOCK
  512. select ZLIB_INFLATE
  513. help
  514. Saying Y here includes support for CramFs (Compressed ROM File
  515. System). CramFs is designed to be a simple, small, and compressed
  516. file system for ROM based embedded systems. CramFs is read-only,
  517. limited to 256MB file systems (with 16MB files), and doesn't support
  518. 16/32 bits uid/gid, hard links and timestamps.
  519. See <file:Documentation/filesystems/cramfs.txt> and
  520. <file:fs/cramfs/README> for further information.
  521. To compile this as a module, choose M here: the module will be called
  522. cramfs. Note that the root file system (the one containing the
  523. directory /) cannot be compiled as a module.
  524. If unsure, say N.
  525. config SQUASHFS
  526. tristate "SquashFS 4.0 - Squashed file system support"
  527. depends on BLOCK
  528. select ZLIB_INFLATE
  529. help
  530. Saying Y here includes support for SquashFS 4.0 (a Compressed
  531. Read-Only File System). Squashfs is a highly compressed read-only
  532. filesystem for Linux. It uses zlib compression to compress both
  533. files, inodes and directories. Inodes in the system are very small
  534. and all blocks are packed to minimise data overhead. Block sizes
  535. greater than 4K are supported up to a maximum of 1 Mbytes (default
  536. block size 128K). SquashFS 4.0 supports 64 bit filesystems and files
  537. (larger than 4GB), full uid/gid information, hard links and
  538. timestamps.
  539. Squashfs is intended for general read-only filesystem use, for
  540. archival use (i.e. in cases where a .tar.gz file may be used), and in
  541. embedded systems where low overhead is needed. Further information
  542. and tools are available from http://squashfs.sourceforge.net.
  543. If you want to compile this as a module ( = code which can be
  544. inserted in and removed from the running kernel whenever you want),
  545. say M here and read <file:Documentation/modules.txt>. The module
  546. will be called squashfs. Note that the root file system (the one
  547. containing the directory /) cannot be compiled as a module.
  548. If unsure, say N.
  549. config SQUASHFS_EMBEDDED
  550. bool "Additional option for memory-constrained systems"
  551. depends on SQUASHFS
  552. default n
  553. help
  554. Saying Y here allows you to specify cache size.
  555. If unsure, say N.
  556. config SQUASHFS_FRAGMENT_CACHE_SIZE
  557. int "Number of fragments cached" if SQUASHFS_EMBEDDED
  558. depends on SQUASHFS
  559. default "3"
  560. help
  561. By default SquashFS caches the last 3 fragments read from
  562. the filesystem. Increasing this amount may mean SquashFS
  563. has to re-read fragments less often from disk, at the expense
  564. of extra system memory. Decreasing this amount will mean
  565. SquashFS uses less memory at the expense of extra reads from disk.
  566. Note there must be at least one cached fragment. Anything
  567. much more than three will probably not make much difference.
  568. config VXFS_FS
  569. tristate "FreeVxFS file system support (VERITAS VxFS(TM) compatible)"
  570. depends on BLOCK
  571. help
  572. FreeVxFS is a file system driver that support the VERITAS VxFS(TM)
  573. file system format. VERITAS VxFS(TM) is the standard file system
  574. of SCO UnixWare (and possibly others) and optionally available
  575. for Sunsoft Solaris, HP-UX and many other operating systems.
  576. Currently only readonly access is supported.
  577. NOTE: the file system type as used by mount(1), mount(2) and
  578. fstab(5) is 'vxfs' as it describes the file system format, not
  579. the actual driver.
  580. To compile this as a module, choose M here: the module will be
  581. called freevxfs. If unsure, say N.
  582. config MINIX_FS
  583. tristate "Minix file system support"
  584. depends on BLOCK
  585. help
  586. Minix is a simple operating system used in many classes about OS's.
  587. The minix file system (method to organize files on a hard disk
  588. partition or a floppy disk) was the original file system for Linux,
  589. but has been superseded by the second extended file system ext2fs.
  590. You don't want to use the minix file system on your hard disk
  591. because of certain built-in restrictions, but it is sometimes found
  592. on older Linux floppy disks. This option will enlarge your kernel
  593. by about 28 KB. If unsure, say N.
  594. To compile this file system support as a module, choose M here: the
  595. module will be called minix. Note that the file system of your root
  596. partition (the one containing the directory /) cannot be compiled as
  597. a module.
  598. config OMFS_FS
  599. tristate "SonicBlue Optimized MPEG File System support"
  600. depends on BLOCK
  601. select CRC_ITU_T
  602. help
  603. This is the proprietary file system used by the Rio Karma music
  604. player and ReplayTV DVR. Despite the name, this filesystem is not
  605. more efficient than a standard FS for MPEG files, in fact likely
  606. the opposite is true. Say Y if you have either of these devices
  607. and wish to mount its disk.
  608. To compile this file system support as a module, choose M here: the
  609. module will be called omfs. If unsure, say N.
  610. config HPFS_FS
  611. tristate "OS/2 HPFS file system support"
  612. depends on BLOCK
  613. help
  614. OS/2 is IBM's operating system for PC's, the same as Warp, and HPFS
  615. is the file system used for organizing files on OS/2 hard disk
  616. partitions. Say Y if you want to be able to read files from and
  617. write files to an OS/2 HPFS partition on your hard drive. OS/2
  618. floppies however are in regular MSDOS format, so you don't need this
  619. option in order to be able to read them. Read
  620. <file:Documentation/filesystems/hpfs.txt>.
  621. To compile this file system support as a module, choose M here: the
  622. module will be called hpfs. If unsure, say N.
  623. config QNX4FS_FS
  624. tristate "QNX4 file system support (read only)"
  625. depends on BLOCK
  626. help
  627. This is the file system used by the real-time operating systems
  628. QNX 4 and QNX 6 (the latter is also called QNX RTP).
  629. Further information is available at <http://www.qnx.com/>.
  630. Say Y if you intend to mount QNX hard disks or floppies.
  631. Unless you say Y to "QNX4FS read-write support" below, you will
  632. only be able to read these file systems.
  633. To compile this file system support as a module, choose M here: the
  634. module will be called qnx4.
  635. If you don't know whether you need it, then you don't need it:
  636. answer N.
  637. config QNX4FS_RW
  638. bool "QNX4FS write support (DANGEROUS)"
  639. depends on QNX4FS_FS && EXPERIMENTAL && BROKEN
  640. help
  641. Say Y if you want to test write support for QNX4 file systems.
  642. It's currently broken, so for now:
  643. answer N.
  644. config ROMFS_FS
  645. tristate "ROM file system support"
  646. depends on BLOCK
  647. ---help---
  648. This is a very small read-only file system mainly intended for
  649. initial ram disks of installation disks, but it could be used for
  650. other read-only media as well. Read
  651. <file:Documentation/filesystems/romfs.txt> for details.
  652. To compile this file system support as a module, choose M here: the
  653. module will be called romfs. Note that the file system of your
  654. root partition (the one containing the directory /) cannot be a
  655. module.
  656. If you don't know whether you need it, then you don't need it:
  657. answer N.
  658. config SYSV_FS
  659. tristate "System V/Xenix/V7/Coherent file system support"
  660. depends on BLOCK
  661. help
  662. SCO, Xenix and Coherent are commercial Unix systems for Intel
  663. machines, and Version 7 was used on the DEC PDP-11. Saying Y
  664. here would allow you to read from their floppies and hard disk
  665. partitions.
  666. If you have floppies or hard disk partitions like that, it is likely
  667. that they contain binaries from those other Unix systems; in order
  668. to run these binaries, you will want to install linux-abi which is
  669. a set of kernel modules that lets you run SCO, Xenix, Wyse,
  670. UnixWare, Dell Unix and System V programs under Linux. It is
  671. available via FTP (user: ftp) from
  672. <ftp://ftp.openlinux.org/pub/people/hch/linux-abi/>).
  673. NOTE: that will work only for binaries from Intel-based systems;
  674. PDP ones will have to wait until somebody ports Linux to -11 ;-)
  675. If you only intend to mount files from some other Unix over the
  676. network using NFS, you don't need the System V file system support
  677. (but you need NFS file system support obviously).
  678. Note that this option is generally not needed for floppies, since a
  679. good portable way to transport files and directories between unixes
  680. (and even other operating systems) is given by the tar program ("man
  681. tar" or preferably "info tar"). Note also that this option has
  682. nothing whatsoever to do with the option "System V IPC". Read about
  683. the System V file system in
  684. <file:Documentation/filesystems/sysv-fs.txt>.
  685. Saying Y here will enlarge your kernel by about 27 KB.
  686. To compile this as a module, choose M here: the module will be called
  687. sysv.
  688. If you haven't heard about all of this before, it's safe to say N.
  689. config UFS_FS
  690. tristate "UFS file system support (read only)"
  691. depends on BLOCK
  692. help
  693. BSD and derivate versions of Unix (such as SunOS, FreeBSD, NetBSD,
  694. OpenBSD and NeXTstep) use a file system called UFS. Some System V
  695. Unixes can create and mount hard disk partitions and diskettes using
  696. this file system as well. Saying Y here will allow you to read from
  697. these partitions; if you also want to write to them, say Y to the
  698. experimental "UFS file system write support", below. Please read the
  699. file <file:Documentation/filesystems/ufs.txt> for more information.
  700. The recently released UFS2 variant (used in FreeBSD 5.x) is
  701. READ-ONLY supported.
  702. Note that this option is generally not needed for floppies, since a
  703. good portable way to transport files and directories between unixes
  704. (and even other operating systems) is given by the tar program ("man
  705. tar" or preferably "info tar").
  706. When accessing NeXTstep files, you may need to convert them from the
  707. NeXT character set to the Latin1 character set; use the program
  708. recode ("info recode") for this purpose.
  709. To compile the UFS file system support as a module, choose M here: the
  710. module will be called ufs.
  711. If you haven't heard about all of this before, it's safe to say N.
  712. config UFS_FS_WRITE
  713. bool "UFS file system write support (DANGEROUS)"
  714. depends on UFS_FS && EXPERIMENTAL
  715. help
  716. Say Y here if you want to try writing to UFS partitions. This is
  717. experimental, so you should back up your UFS partitions beforehand.
  718. config UFS_DEBUG
  719. bool "UFS debugging"
  720. depends on UFS_FS
  721. help
  722. If you are experiencing any problems with the UFS filesystem, say
  723. Y here. This will result in _many_ additional debugging messages to be
  724. written to the system log.
  725. endif # MISC_FILESYSTEMS
  726. menuconfig NETWORK_FILESYSTEMS
  727. bool "Network File Systems"
  728. default y
  729. depends on NET
  730. ---help---
  731. Say Y here to get to see options for network filesystems and
  732. filesystem-related networking code, such as NFS daemon and
  733. RPCSEC security modules.
  734. This option alone does not add any kernel code.
  735. If you say N, all options in this submenu will be skipped and
  736. disabled; if unsure, say Y here.
  737. if NETWORK_FILESYSTEMS
  738. config NFS_FS
  739. tristate "NFS client support"
  740. depends on INET
  741. select LOCKD
  742. select SUNRPC
  743. select NFS_ACL_SUPPORT if NFS_V3_ACL
  744. help
  745. Choose Y here if you want to access files residing on other
  746. computers using Sun's Network File System protocol. To compile
  747. this file system support as a module, choose M here: the module
  748. will be called nfs.
  749. To mount file systems exported by NFS servers, you also need to
  750. install the user space mount.nfs command which can be found in
  751. the Linux nfs-utils package, available from http://linux-nfs.org/.
  752. Information about using the mount command is available in the
  753. mount(8) man page. More detail about the Linux NFS client
  754. implementation is available via the nfs(5) man page.
  755. Below you can choose which versions of the NFS protocol are
  756. available in the kernel to mount NFS servers. Support for NFS
  757. version 2 (RFC 1094) is always available when NFS_FS is selected.
  758. To configure a system which mounts its root file system via NFS
  759. at boot time, say Y here, select "Kernel level IP
  760. autoconfiguration" in the NETWORK menu, and select "Root file
  761. system on NFS" below. You cannot compile this file system as a
  762. module in this case.
  763. If unsure, say N.
  764. config NFS_V3
  765. bool "NFS client support for NFS version 3"
  766. depends on NFS_FS
  767. help
  768. This option enables support for version 3 of the NFS protocol
  769. (RFC 1813) in the kernel's NFS client.
  770. If unsure, say Y.
  771. config NFS_V3_ACL
  772. bool "NFS client support for the NFSv3 ACL protocol extension"
  773. depends on NFS_V3
  774. help
  775. Some NFS servers support an auxiliary NFSv3 ACL protocol that
  776. Sun added to Solaris but never became an official part of the
  777. NFS version 3 protocol. This protocol extension allows
  778. applications on NFS clients to manipulate POSIX Access Control
  779. Lists on files residing on NFS servers. NFS servers enforce
  780. ACLs on local files whether this protocol is available or not.
  781. Choose Y here if your NFS server supports the Solaris NFSv3 ACL
  782. protocol extension and you want your NFS client to allow
  783. applications to access and modify ACLs on files on the server.
  784. Most NFS servers don't support the Solaris NFSv3 ACL protocol
  785. extension. You can choose N here or specify the "noacl" mount
  786. option to prevent your NFS client from trying to use the NFSv3
  787. ACL protocol.
  788. If unsure, say N.
  789. config NFS_V4
  790. bool "NFS client support for NFS version 4 (EXPERIMENTAL)"
  791. depends on NFS_FS && EXPERIMENTAL
  792. select RPCSEC_GSS_KRB5
  793. help
  794. This option enables support for version 4 of the NFS protocol
  795. (RFC 3530) in the kernel's NFS client.
  796. To mount NFS servers using NFSv4, you also need to install user
  797. space programs which can be found in the Linux nfs-utils package,
  798. available from http://linux-nfs.org/.
  799. If unsure, say N.
  800. config ROOT_NFS
  801. bool "Root file system on NFS"
  802. depends on NFS_FS=y && IP_PNP
  803. help
  804. If you want your system to mount its root file system via NFS,
  805. choose Y here. This is common practice for managing systems
  806. without local permanent storage. For details, read
  807. <file:Documentation/filesystems/nfsroot.txt>.
  808. Most people say N here.
  809. config NFSD
  810. tristate "NFS server support"
  811. depends on INET
  812. select LOCKD
  813. select SUNRPC
  814. select EXPORTFS
  815. select NFS_ACL_SUPPORT if NFSD_V2_ACL
  816. help
  817. Choose Y here if you want to allow other computers to access
  818. files residing on this system using Sun's Network File System
  819. protocol. To compile the NFS server support as a module,
  820. choose M here: the module will be called nfsd.
  821. You may choose to use a user-space NFS server instead, in which
  822. case you can choose N here.
  823. To export local file systems using NFS, you also need to install
  824. user space programs which can be found in the Linux nfs-utils
  825. package, available from http://linux-nfs.org/. More detail about
  826. the Linux NFS server implementation is available via the
  827. exports(5) man page.
  828. Below you can choose which versions of the NFS protocol are
  829. available to clients mounting the NFS server on this system.
  830. Support for NFS version 2 (RFC 1094) is always available when
  831. CONFIG_NFSD is selected.
  832. If unsure, say N.
  833. config NFSD_V2_ACL
  834. bool
  835. depends on NFSD
  836. config NFSD_V3
  837. bool "NFS server support for NFS version 3"
  838. depends on NFSD
  839. help
  840. This option enables support in your system's NFS server for
  841. version 3 of the NFS protocol (RFC 1813).
  842. If unsure, say Y.
  843. config NFSD_V3_ACL
  844. bool "NFS server support for the NFSv3 ACL protocol extension"
  845. depends on NFSD_V3
  846. select NFSD_V2_ACL
  847. help
  848. Solaris NFS servers support an auxiliary NFSv3 ACL protocol that
  849. never became an official part of the NFS version 3 protocol.
  850. This protocol extension allows applications on NFS clients to
  851. manipulate POSIX Access Control Lists on files residing on NFS
  852. servers. NFS servers enforce POSIX ACLs on local files whether
  853. this protocol is available or not.
  854. This option enables support in your system's NFS server for the
  855. NFSv3 ACL protocol extension allowing NFS clients to manipulate
  856. POSIX ACLs on files exported by your system's NFS server. NFS
  857. clients which support the Solaris NFSv3 ACL protocol can then
  858. access and modify ACLs on your NFS server.
  859. To store ACLs on your NFS server, you also need to enable ACL-
  860. related CONFIG options for your local file systems of choice.
  861. If unsure, say N.
  862. config NFSD_V4
  863. bool "NFS server support for NFS version 4 (EXPERIMENTAL)"
  864. depends on NFSD && PROC_FS && EXPERIMENTAL
  865. select NFSD_V3
  866. select FS_POSIX_ACL
  867. select RPCSEC_GSS_KRB5
  868. help
  869. This option enables support in your system's NFS server for
  870. version 4 of the NFS protocol (RFC 3530).
  871. To export files using NFSv4, you need to install additional user
  872. space programs which can be found in the Linux nfs-utils package,
  873. available from http://linux-nfs.org/.
  874. If unsure, say N.
  875. config LOCKD
  876. tristate
  877. config LOCKD_V4
  878. bool
  879. depends on NFSD_V3 || NFS_V3
  880. default y
  881. config EXPORTFS
  882. tristate
  883. config NFS_ACL_SUPPORT
  884. tristate
  885. select FS_POSIX_ACL
  886. config NFS_COMMON
  887. bool
  888. depends on NFSD || NFS_FS
  889. default y
  890. config SUNRPC
  891. tristate
  892. config SUNRPC_GSS
  893. tristate
  894. config SUNRPC_XPRT_RDMA
  895. tristate
  896. depends on SUNRPC && INFINIBAND && EXPERIMENTAL
  897. default SUNRPC && INFINIBAND
  898. help
  899. This option enables an RPC client transport capability that
  900. allows the NFS client to mount servers via an RDMA-enabled
  901. transport.
  902. To compile RPC client RDMA transport support as a module,
  903. choose M here: the module will be called xprtrdma.
  904. If unsure, say N.
  905. config SUNRPC_REGISTER_V4
  906. bool "Register local RPC services via rpcbind v4 (EXPERIMENTAL)"
  907. depends on SUNRPC && EXPERIMENTAL
  908. default n
  909. help
  910. Sun added support for registering RPC services at an IPv6
  911. address by creating two new versions of the rpcbind protocol
  912. (RFC 1833).
  913. This option enables support in the kernel RPC server for
  914. registering kernel RPC services via version 4 of the rpcbind
  915. protocol. If you enable this option, you must run a portmapper
  916. daemon that supports rpcbind protocol version 4.
  917. Serving NFS over IPv6 from knfsd (the kernel's NFS server)
  918. requires that you enable this option and use a portmapper that
  919. supports rpcbind version 4.
  920. If unsure, say N to get traditional behavior (register kernel
  921. RPC services using only rpcbind version 2). Distributions
  922. using the legacy Linux portmapper daemon must say N here.
  923. config RPCSEC_GSS_KRB5
  924. tristate "Secure RPC: Kerberos V mechanism (EXPERIMENTAL)"
  925. depends on SUNRPC && EXPERIMENTAL
  926. select SUNRPC_GSS
  927. select CRYPTO
  928. select CRYPTO_MD5
  929. select CRYPTO_DES
  930. select CRYPTO_CBC
  931. help
  932. Choose Y here to enable Secure RPC using the Kerberos version 5
  933. GSS-API mechanism (RFC 1964).
  934. Secure RPC calls with Kerberos require an auxiliary user-space
  935. daemon which may be found in the Linux nfs-utils package
  936. available from http://linux-nfs.org/. In addition, user-space
  937. Kerberos support should be installed.
  938. If unsure, say N.
  939. config RPCSEC_GSS_SPKM3
  940. tristate "Secure RPC: SPKM3 mechanism (EXPERIMENTAL)"
  941. depends on SUNRPC && EXPERIMENTAL
  942. select SUNRPC_GSS
  943. select CRYPTO
  944. select CRYPTO_MD5
  945. select CRYPTO_DES
  946. select CRYPTO_CAST5
  947. select CRYPTO_CBC
  948. help
  949. Choose Y here to enable Secure RPC using the SPKM3 public key
  950. GSS-API mechansim (RFC 2025).
  951. Secure RPC calls with SPKM3 require an auxiliary userspace
  952. daemon which may be found in the Linux nfs-utils package
  953. available from http://linux-nfs.org/.
  954. If unsure, say N.
  955. config SMB_FS
  956. tristate "SMB file system support (OBSOLETE, please use CIFS)"
  957. depends on INET
  958. select NLS
  959. help
  960. SMB (Server Message Block) is the protocol Windows for Workgroups
  961. (WfW), Windows 95/98, Windows NT and OS/2 Lan Manager use to share
  962. files and printers over local networks. Saying Y here allows you to
  963. mount their file systems (often called "shares" in this context) and
  964. access them just like any other Unix directory. Currently, this
  965. works only if the Windows machines use TCP/IP as the underlying
  966. transport protocol, and not NetBEUI. For details, read
  967. <file:Documentation/filesystems/smbfs.txt> and the SMB-HOWTO,
  968. available from <http://www.tldp.org/docs.html#howto>.
  969. Note: if you just want your box to act as an SMB *server* and make
  970. files and printing services available to Windows clients (which need
  971. to have a TCP/IP stack), you don't need to say Y here; you can use
  972. the program SAMBA (available from <ftp://ftp.samba.org/pub/samba/>)
  973. for that.
  974. General information about how to connect Linux, Windows machines and
  975. Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
  976. To compile the SMB support as a module, choose M here:
  977. the module will be called smbfs. Most people say N, however.
  978. config SMB_NLS_DEFAULT
  979. bool "Use a default NLS"
  980. depends on SMB_FS
  981. help
  982. Enabling this will make smbfs use nls translations by default. You
  983. need to specify the local charset (CONFIG_NLS_DEFAULT) in the nls
  984. settings and you need to give the default nls for the SMB server as
  985. CONFIG_SMB_NLS_REMOTE.
  986. The nls settings can be changed at mount time, if your smbmount
  987. supports that, using the codepage and iocharset parameters.
  988. smbmount from samba 2.2.0 or later supports this.
  989. config SMB_NLS_REMOTE
  990. string "Default Remote NLS Option"
  991. depends on SMB_NLS_DEFAULT
  992. default "cp437"
  993. help
  994. This setting allows you to specify a default value for which
  995. codepage the server uses. If this field is left blank no
  996. translations will be done by default. The local codepage/charset
  997. default to CONFIG_NLS_DEFAULT.
  998. The nls settings can be changed at mount time, if your smbmount
  999. supports that, using the codepage and iocharset parameters.
  1000. smbmount from samba 2.2.0 or later supports this.
  1001. source "fs/cifs/Kconfig"
  1002. config NCP_FS
  1003. tristate "NCP file system support (to mount NetWare volumes)"
  1004. depends on IPX!=n || INET
  1005. help
  1006. NCP (NetWare Core Protocol) is a protocol that runs over IPX and is
  1007. used by Novell NetWare clients to talk to file servers. It is to
  1008. IPX what NFS is to TCP/IP, if that helps. Saying Y here allows you
  1009. to mount NetWare file server volumes and to access them just like
  1010. any other Unix directory. For details, please read the file
  1011. <file:Documentation/filesystems/ncpfs.txt> in the kernel source and
  1012. the IPX-HOWTO from <http://www.tldp.org/docs.html#howto>.
  1013. You do not have to say Y here if you want your Linux box to act as a
  1014. file *server* for Novell NetWare clients.
  1015. General information about how to connect Linux, Windows machines and
  1016. Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
  1017. To compile this as a module, choose M here: the module will be called
  1018. ncpfs. Say N unless you are connected to a Novell network.
  1019. source "fs/ncpfs/Kconfig"
  1020. config CODA_FS
  1021. tristate "Coda file system support (advanced network fs)"
  1022. depends on INET
  1023. help
  1024. Coda is an advanced network file system, similar to NFS in that it
  1025. enables you to mount file systems of a remote server and access them
  1026. with regular Unix commands as if they were sitting on your hard
  1027. disk. Coda has several advantages over NFS: support for
  1028. disconnected operation (e.g. for laptops), read/write server
  1029. replication, security model for authentication and encryption,
  1030. persistent client caches and write back caching.
  1031. If you say Y here, your Linux box will be able to act as a Coda
  1032. *client*. You will need user level code as well, both for the
  1033. client and server. Servers are currently user level, i.e. they need
  1034. no kernel support. Please read
  1035. <file:Documentation/filesystems/coda.txt> and check out the Coda
  1036. home page <http://www.coda.cs.cmu.edu/>.
  1037. To compile the coda client support as a module, choose M here: the
  1038. module will be called coda.
  1039. config AFS_FS
  1040. tristate "Andrew File System support (AFS) (EXPERIMENTAL)"
  1041. depends on INET && EXPERIMENTAL
  1042. select AF_RXRPC
  1043. help
  1044. If you say Y here, you will get an experimental Andrew File System
  1045. driver. It currently only supports unsecured read-only AFS access.
  1046. See <file:Documentation/filesystems/afs.txt> for more information.
  1047. If unsure, say N.
  1048. config AFS_DEBUG
  1049. bool "AFS dynamic debugging"
  1050. depends on AFS_FS
  1051. help
  1052. Say Y here to make runtime controllable debugging messages appear.
  1053. See <file:Documentation/filesystems/afs.txt> for more information.
  1054. If unsure, say N.
  1055. config 9P_FS
  1056. tristate "Plan 9 Resource Sharing Support (9P2000) (Experimental)"
  1057. depends on INET && NET_9P && EXPERIMENTAL
  1058. help
  1059. If you say Y here, you will get experimental support for
  1060. Plan 9 resource sharing via the 9P2000 protocol.
  1061. See <http://v9fs.sf.net> for more information.
  1062. If unsure, say N.
  1063. endif # NETWORK_FILESYSTEMS
  1064. if BLOCK
  1065. menu "Partition Types"
  1066. source "fs/partitions/Kconfig"
  1067. endmenu
  1068. endif
  1069. source "fs/nls/Kconfig"
  1070. source "fs/dlm/Kconfig"
  1071. endmenu