Kconfig 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661
  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. source "fs/isofs/Kconfig"
  104. source "fs/udf/Kconfig"
  105. endmenu
  106. endif # BLOCK
  107. if BLOCK
  108. menu "DOS/FAT/NT Filesystems"
  109. source "fs/fat/Kconfig"
  110. source "fs/ntfs/Kconfig"
  111. endmenu
  112. endif # BLOCK
  113. menu "Pseudo filesystems"
  114. source "fs/proc/Kconfig"
  115. source "fs/sysfs/Kconfig"
  116. config TMPFS
  117. bool "Virtual memory file system support (former shm fs)"
  118. help
  119. Tmpfs is a file system which keeps all files in virtual memory.
  120. Everything in tmpfs is temporary in the sense that no files will be
  121. created on your hard drive. The files live in memory and swap
  122. space. If you unmount a tmpfs instance, everything stored therein is
  123. lost.
  124. See <file:Documentation/filesystems/tmpfs.txt> for details.
  125. config TMPFS_POSIX_ACL
  126. bool "Tmpfs POSIX Access Control Lists"
  127. depends on TMPFS
  128. select GENERIC_ACL
  129. help
  130. POSIX Access Control Lists (ACLs) support permissions for users and
  131. groups beyond the owner/group/world scheme.
  132. To learn more about Access Control Lists, visit the POSIX ACLs for
  133. Linux website <http://acl.bestbits.at/>.
  134. If you don't know what Access Control Lists are, say N.
  135. config HUGETLBFS
  136. bool "HugeTLB file system support"
  137. depends on X86 || IA64 || PPC64 || SPARC64 || (SUPERH && MMU) || \
  138. (S390 && 64BIT) || BROKEN
  139. help
  140. hugetlbfs is a filesystem backing for HugeTLB pages, based on
  141. ramfs. For architectures that support it, say Y here and read
  142. <file:Documentation/vm/hugetlbpage.txt> for details.
  143. If unsure, say N.
  144. config HUGETLB_PAGE
  145. def_bool HUGETLBFS
  146. source "fs/configfs/Kconfig"
  147. endmenu
  148. menuconfig MISC_FILESYSTEMS
  149. bool "Miscellaneous filesystems"
  150. default y
  151. ---help---
  152. Say Y here to get to see options for various miscellaneous
  153. filesystems, such as filesystems that came from other
  154. operating systems.
  155. This option alone does not add any kernel code.
  156. If you say N, all options in this submenu will be skipped and
  157. disabled; if unsure, say Y here.
  158. if MISC_FILESYSTEMS
  159. source "fs/adfs/Kconfig"
  160. source "fs/affs/Kconfig"
  161. source "fs/ecryptfs/Kconfig"
  162. source "fs/hfs/Kconfig"
  163. source "fs/hfsplus/Kconfig"
  164. source "fs/befs/Kconfig"
  165. source "fs/bfs/Kconfig"
  166. source "fs/efs/Kconfig"
  167. source "fs/jffs2/Kconfig"
  168. # UBIFS File system configuration
  169. source "fs/ubifs/Kconfig"
  170. source "fs/cramfs/Kconfig"
  171. source "fs/squashfs/Kconfig"
  172. source "fs/freevxfs/Kconfig"
  173. source "fs/minix/Kconfig"
  174. source "fs/omfs/Kconfig"
  175. source "fs/hpfs/Kconfig"
  176. source "fs/qnx4/Kconfig"
  177. source "fs/romfs/Kconfig"
  178. source "fs/sysv/Kconfig"
  179. source "fs/ufs/Kconfig"
  180. endif # MISC_FILESYSTEMS
  181. menuconfig NETWORK_FILESYSTEMS
  182. bool "Network File Systems"
  183. default y
  184. depends on NET
  185. ---help---
  186. Say Y here to get to see options for network filesystems and
  187. filesystem-related networking code, such as NFS daemon and
  188. RPCSEC security modules.
  189. This option alone does not add any kernel code.
  190. If you say N, all options in this submenu will be skipped and
  191. disabled; if unsure, say Y here.
  192. if NETWORK_FILESYSTEMS
  193. config NFS_FS
  194. tristate "NFS client support"
  195. depends on INET
  196. select LOCKD
  197. select SUNRPC
  198. select NFS_ACL_SUPPORT if NFS_V3_ACL
  199. help
  200. Choose Y here if you want to access files residing on other
  201. computers using Sun's Network File System protocol. To compile
  202. this file system support as a module, choose M here: the module
  203. will be called nfs.
  204. To mount file systems exported by NFS servers, you also need to
  205. install the user space mount.nfs command which can be found in
  206. the Linux nfs-utils package, available from http://linux-nfs.org/.
  207. Information about using the mount command is available in the
  208. mount(8) man page. More detail about the Linux NFS client
  209. implementation is available via the nfs(5) man page.
  210. Below you can choose which versions of the NFS protocol are
  211. available in the kernel to mount NFS servers. Support for NFS
  212. version 2 (RFC 1094) is always available when NFS_FS is selected.
  213. To configure a system which mounts its root file system via NFS
  214. at boot time, say Y here, select "Kernel level IP
  215. autoconfiguration" in the NETWORK menu, and select "Root file
  216. system on NFS" below. You cannot compile this file system as a
  217. module in this case.
  218. If unsure, say N.
  219. config NFS_V3
  220. bool "NFS client support for NFS version 3"
  221. depends on NFS_FS
  222. help
  223. This option enables support for version 3 of the NFS protocol
  224. (RFC 1813) in the kernel's NFS client.
  225. If unsure, say Y.
  226. config NFS_V3_ACL
  227. bool "NFS client support for the NFSv3 ACL protocol extension"
  228. depends on NFS_V3
  229. help
  230. Some NFS servers support an auxiliary NFSv3 ACL protocol that
  231. Sun added to Solaris but never became an official part of the
  232. NFS version 3 protocol. This protocol extension allows
  233. applications on NFS clients to manipulate POSIX Access Control
  234. Lists on files residing on NFS servers. NFS servers enforce
  235. ACLs on local files whether this protocol is available or not.
  236. Choose Y here if your NFS server supports the Solaris NFSv3 ACL
  237. protocol extension and you want your NFS client to allow
  238. applications to access and modify ACLs on files on the server.
  239. Most NFS servers don't support the Solaris NFSv3 ACL protocol
  240. extension. You can choose N here or specify the "noacl" mount
  241. option to prevent your NFS client from trying to use the NFSv3
  242. ACL protocol.
  243. If unsure, say N.
  244. config NFS_V4
  245. bool "NFS client support for NFS version 4 (EXPERIMENTAL)"
  246. depends on NFS_FS && EXPERIMENTAL
  247. select RPCSEC_GSS_KRB5
  248. help
  249. This option enables support for version 4 of the NFS protocol
  250. (RFC 3530) in the kernel's NFS client.
  251. To mount NFS servers using NFSv4, you also need to install user
  252. space programs which can be found in the Linux nfs-utils package,
  253. available from http://linux-nfs.org/.
  254. If unsure, say N.
  255. config ROOT_NFS
  256. bool "Root file system on NFS"
  257. depends on NFS_FS=y && IP_PNP
  258. help
  259. If you want your system to mount its root file system via NFS,
  260. choose Y here. This is common practice for managing systems
  261. without local permanent storage. For details, read
  262. <file:Documentation/filesystems/nfsroot.txt>.
  263. Most people say N here.
  264. config NFSD
  265. tristate "NFS server support"
  266. depends on INET
  267. select LOCKD
  268. select SUNRPC
  269. select EXPORTFS
  270. select NFS_ACL_SUPPORT if NFSD_V2_ACL
  271. help
  272. Choose Y here if you want to allow other computers to access
  273. files residing on this system using Sun's Network File System
  274. protocol. To compile the NFS server support as a module,
  275. choose M here: the module will be called nfsd.
  276. You may choose to use a user-space NFS server instead, in which
  277. case you can choose N here.
  278. To export local file systems using NFS, you also need to install
  279. user space programs which can be found in the Linux nfs-utils
  280. package, available from http://linux-nfs.org/. More detail about
  281. the Linux NFS server implementation is available via the
  282. exports(5) man page.
  283. Below you can choose which versions of the NFS protocol are
  284. available to clients mounting the NFS server on this system.
  285. Support for NFS version 2 (RFC 1094) is always available when
  286. CONFIG_NFSD is selected.
  287. If unsure, say N.
  288. config NFSD_V2_ACL
  289. bool
  290. depends on NFSD
  291. config NFSD_V3
  292. bool "NFS server support for NFS version 3"
  293. depends on NFSD
  294. help
  295. This option enables support in your system's NFS server for
  296. version 3 of the NFS protocol (RFC 1813).
  297. If unsure, say Y.
  298. config NFSD_V3_ACL
  299. bool "NFS server support for the NFSv3 ACL protocol extension"
  300. depends on NFSD_V3
  301. select NFSD_V2_ACL
  302. help
  303. Solaris NFS servers support an auxiliary NFSv3 ACL protocol that
  304. never became an official part of the NFS version 3 protocol.
  305. This protocol extension allows applications on NFS clients to
  306. manipulate POSIX Access Control Lists on files residing on NFS
  307. servers. NFS servers enforce POSIX ACLs on local files whether
  308. this protocol is available or not.
  309. This option enables support in your system's NFS server for the
  310. NFSv3 ACL protocol extension allowing NFS clients to manipulate
  311. POSIX ACLs on files exported by your system's NFS server. NFS
  312. clients which support the Solaris NFSv3 ACL protocol can then
  313. access and modify ACLs on your NFS server.
  314. To store ACLs on your NFS server, you also need to enable ACL-
  315. related CONFIG options for your local file systems of choice.
  316. If unsure, say N.
  317. config NFSD_V4
  318. bool "NFS server support for NFS version 4 (EXPERIMENTAL)"
  319. depends on NFSD && PROC_FS && EXPERIMENTAL
  320. select NFSD_V3
  321. select FS_POSIX_ACL
  322. select RPCSEC_GSS_KRB5
  323. help
  324. This option enables support in your system's NFS server for
  325. version 4 of the NFS protocol (RFC 3530).
  326. To export files using NFSv4, you need to install additional user
  327. space programs which can be found in the Linux nfs-utils package,
  328. available from http://linux-nfs.org/.
  329. If unsure, say N.
  330. config LOCKD
  331. tristate
  332. config LOCKD_V4
  333. bool
  334. depends on NFSD_V3 || NFS_V3
  335. default y
  336. config EXPORTFS
  337. tristate
  338. config NFS_ACL_SUPPORT
  339. tristate
  340. select FS_POSIX_ACL
  341. config NFS_COMMON
  342. bool
  343. depends on NFSD || NFS_FS
  344. default y
  345. config SUNRPC
  346. tristate
  347. config SUNRPC_GSS
  348. tristate
  349. config SUNRPC_XPRT_RDMA
  350. tristate
  351. depends on SUNRPC && INFINIBAND && EXPERIMENTAL
  352. default SUNRPC && INFINIBAND
  353. help
  354. This option enables an RPC client transport capability that
  355. allows the NFS client to mount servers via an RDMA-enabled
  356. transport.
  357. To compile RPC client RDMA transport support as a module,
  358. choose M here: the module will be called xprtrdma.
  359. If unsure, say N.
  360. config SUNRPC_REGISTER_V4
  361. bool "Register local RPC services via rpcbind v4 (EXPERIMENTAL)"
  362. depends on SUNRPC && EXPERIMENTAL
  363. default n
  364. help
  365. Sun added support for registering RPC services at an IPv6
  366. address by creating two new versions of the rpcbind protocol
  367. (RFC 1833).
  368. This option enables support in the kernel RPC server for
  369. registering kernel RPC services via version 4 of the rpcbind
  370. protocol. If you enable this option, you must run a portmapper
  371. daemon that supports rpcbind protocol version 4.
  372. Serving NFS over IPv6 from knfsd (the kernel's NFS server)
  373. requires that you enable this option and use a portmapper that
  374. supports rpcbind version 4.
  375. If unsure, say N to get traditional behavior (register kernel
  376. RPC services using only rpcbind version 2). Distributions
  377. using the legacy Linux portmapper daemon must say N here.
  378. config RPCSEC_GSS_KRB5
  379. tristate "Secure RPC: Kerberos V mechanism (EXPERIMENTAL)"
  380. depends on SUNRPC && EXPERIMENTAL
  381. select SUNRPC_GSS
  382. select CRYPTO
  383. select CRYPTO_MD5
  384. select CRYPTO_DES
  385. select CRYPTO_CBC
  386. help
  387. Choose Y here to enable Secure RPC using the Kerberos version 5
  388. GSS-API mechanism (RFC 1964).
  389. Secure RPC calls with Kerberos require an auxiliary user-space
  390. daemon which may be found in the Linux nfs-utils package
  391. available from http://linux-nfs.org/. In addition, user-space
  392. Kerberos support should be installed.
  393. If unsure, say N.
  394. config RPCSEC_GSS_SPKM3
  395. tristate "Secure RPC: SPKM3 mechanism (EXPERIMENTAL)"
  396. depends on SUNRPC && EXPERIMENTAL
  397. select SUNRPC_GSS
  398. select CRYPTO
  399. select CRYPTO_MD5
  400. select CRYPTO_DES
  401. select CRYPTO_CAST5
  402. select CRYPTO_CBC
  403. help
  404. Choose Y here to enable Secure RPC using the SPKM3 public key
  405. GSS-API mechansim (RFC 2025).
  406. Secure RPC calls with SPKM3 require an auxiliary userspace
  407. daemon which may be found in the Linux nfs-utils package
  408. available from http://linux-nfs.org/.
  409. If unsure, say N.
  410. config SMB_FS
  411. tristate "SMB file system support (OBSOLETE, please use CIFS)"
  412. depends on INET
  413. select NLS
  414. help
  415. SMB (Server Message Block) is the protocol Windows for Workgroups
  416. (WfW), Windows 95/98, Windows NT and OS/2 Lan Manager use to share
  417. files and printers over local networks. Saying Y here allows you to
  418. mount their file systems (often called "shares" in this context) and
  419. access them just like any other Unix directory. Currently, this
  420. works only if the Windows machines use TCP/IP as the underlying
  421. transport protocol, and not NetBEUI. For details, read
  422. <file:Documentation/filesystems/smbfs.txt> and the SMB-HOWTO,
  423. available from <http://www.tldp.org/docs.html#howto>.
  424. Note: if you just want your box to act as an SMB *server* and make
  425. files and printing services available to Windows clients (which need
  426. to have a TCP/IP stack), you don't need to say Y here; you can use
  427. the program SAMBA (available from <ftp://ftp.samba.org/pub/samba/>)
  428. for that.
  429. General information about how to connect Linux, Windows machines and
  430. Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
  431. To compile the SMB support as a module, choose M here:
  432. the module will be called smbfs. Most people say N, however.
  433. config SMB_NLS_DEFAULT
  434. bool "Use a default NLS"
  435. depends on SMB_FS
  436. help
  437. Enabling this will make smbfs use nls translations by default. You
  438. need to specify the local charset (CONFIG_NLS_DEFAULT) in the nls
  439. settings and you need to give the default nls for the SMB server as
  440. CONFIG_SMB_NLS_REMOTE.
  441. The nls settings can be changed at mount time, if your smbmount
  442. supports that, using the codepage and iocharset parameters.
  443. smbmount from samba 2.2.0 or later supports this.
  444. config SMB_NLS_REMOTE
  445. string "Default Remote NLS Option"
  446. depends on SMB_NLS_DEFAULT
  447. default "cp437"
  448. help
  449. This setting allows you to specify a default value for which
  450. codepage the server uses. If this field is left blank no
  451. translations will be done by default. The local codepage/charset
  452. default to CONFIG_NLS_DEFAULT.
  453. The nls settings can be changed at mount time, if your smbmount
  454. supports that, using the codepage and iocharset parameters.
  455. smbmount from samba 2.2.0 or later supports this.
  456. source "fs/cifs/Kconfig"
  457. config NCP_FS
  458. tristate "NCP file system support (to mount NetWare volumes)"
  459. depends on IPX!=n || INET
  460. help
  461. NCP (NetWare Core Protocol) is a protocol that runs over IPX and is
  462. used by Novell NetWare clients to talk to file servers. It is to
  463. IPX what NFS is to TCP/IP, if that helps. Saying Y here allows you
  464. to mount NetWare file server volumes and to access them just like
  465. any other Unix directory. For details, please read the file
  466. <file:Documentation/filesystems/ncpfs.txt> in the kernel source and
  467. the IPX-HOWTO from <http://www.tldp.org/docs.html#howto>.
  468. You do not have to say Y here if you want your Linux box to act as a
  469. file *server* for Novell NetWare clients.
  470. General information about how to connect Linux, Windows machines and
  471. Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>.
  472. To compile this as a module, choose M here: the module will be called
  473. ncpfs. Say N unless you are connected to a Novell network.
  474. source "fs/ncpfs/Kconfig"
  475. config CODA_FS
  476. tristate "Coda file system support (advanced network fs)"
  477. depends on INET
  478. help
  479. Coda is an advanced network file system, similar to NFS in that it
  480. enables you to mount file systems of a remote server and access them
  481. with regular Unix commands as if they were sitting on your hard
  482. disk. Coda has several advantages over NFS: support for
  483. disconnected operation (e.g. for laptops), read/write server
  484. replication, security model for authentication and encryption,
  485. persistent client caches and write back caching.
  486. If you say Y here, your Linux box will be able to act as a Coda
  487. *client*. You will need user level code as well, both for the
  488. client and server. Servers are currently user level, i.e. they need
  489. no kernel support. Please read
  490. <file:Documentation/filesystems/coda.txt> and check out the Coda
  491. home page <http://www.coda.cs.cmu.edu/>.
  492. To compile the coda client support as a module, choose M here: the
  493. module will be called coda.
  494. config AFS_FS
  495. tristate "Andrew File System support (AFS) (EXPERIMENTAL)"
  496. depends on INET && EXPERIMENTAL
  497. select AF_RXRPC
  498. help
  499. If you say Y here, you will get an experimental Andrew File System
  500. driver. It currently only supports unsecured read-only AFS access.
  501. See <file:Documentation/filesystems/afs.txt> for more information.
  502. If unsure, say N.
  503. config AFS_DEBUG
  504. bool "AFS dynamic debugging"
  505. depends on AFS_FS
  506. help
  507. Say Y here to make runtime controllable debugging messages appear.
  508. See <file:Documentation/filesystems/afs.txt> for more information.
  509. If unsure, say N.
  510. config 9P_FS
  511. tristate "Plan 9 Resource Sharing Support (9P2000) (Experimental)"
  512. depends on INET && NET_9P && EXPERIMENTAL
  513. help
  514. If you say Y here, you will get experimental support for
  515. Plan 9 resource sharing via the 9P2000 protocol.
  516. See <http://v9fs.sf.net> for more information.
  517. If unsure, say N.
  518. endif # NETWORK_FILESYSTEMS
  519. if BLOCK
  520. menu "Partition Types"
  521. source "fs/partitions/Kconfig"
  522. endmenu
  523. endif
  524. source "fs/nls/Kconfig"
  525. source "fs/dlm/Kconfig"
  526. endmenu