Kconfig 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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. source "fs/nfs/Kconfig"
  194. source "fs/nfsd/Kconfig"
  195. config LOCKD
  196. tristate
  197. config LOCKD_V4
  198. bool
  199. depends on NFSD_V3 || NFS_V3
  200. default y
  201. config EXPORTFS
  202. tristate
  203. config NFS_ACL_SUPPORT
  204. tristate
  205. select FS_POSIX_ACL
  206. config NFS_COMMON
  207. bool
  208. depends on NFSD || NFS_FS
  209. default y
  210. source "net/sunrpc/Kconfig"
  211. source "fs/smbfs/Kconfig"
  212. source "fs/cifs/Kconfig"
  213. source "fs/ncpfs/Kconfig"
  214. source "fs/coda/Kconfig"
  215. source "fs/afs/Kconfig"
  216. source "fs/9p/Kconfig"
  217. endif # NETWORK_FILESYSTEMS
  218. if BLOCK
  219. menu "Partition Types"
  220. source "fs/partitions/Kconfig"
  221. endmenu
  222. endif
  223. source "fs/nls/Kconfig"
  224. source "fs/dlm/Kconfig"
  225. endmenu