Kconfig 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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. source "fs/xfs/Kconfig"
  26. source "fs/gfs2/Kconfig"
  27. source "fs/ocfs2/Kconfig"
  28. source "fs/btrfs/Kconfig"
  29. source "fs/nilfs2/Kconfig"
  30. endif # BLOCK
  31. # Posix ACL utility routines
  32. #
  33. # Note: Posix ACLs can be implemented without these helpers. Never use
  34. # this symbol for ifdefs in core code.
  35. #
  36. config FS_POSIX_ACL
  37. def_bool n
  38. config EXPORTFS
  39. bool
  40. config FILE_LOCKING
  41. bool "Enable POSIX file locking API" if EXPERT
  42. default y
  43. help
  44. This option enables standard file locking support, required
  45. for filesystems like NFS and for the flock() system
  46. call. Disabling this option saves about 11k.
  47. source "fs/notify/Kconfig"
  48. source "fs/quota/Kconfig"
  49. source "fs/autofs4/Kconfig"
  50. source "fs/fuse/Kconfig"
  51. config CUSE
  52. tristate "Character device in Userspace support"
  53. depends on FUSE_FS
  54. help
  55. This FUSE extension allows character devices to be
  56. implemented in userspace.
  57. If you want to develop or use userspace character device
  58. based on CUSE, answer Y or M.
  59. config GENERIC_ACL
  60. bool
  61. select FS_POSIX_ACL
  62. menu "Caches"
  63. source "fs/fscache/Kconfig"
  64. source "fs/cachefiles/Kconfig"
  65. endmenu
  66. if BLOCK
  67. menu "CD-ROM/DVD Filesystems"
  68. source "fs/isofs/Kconfig"
  69. source "fs/udf/Kconfig"
  70. endmenu
  71. endif # BLOCK
  72. if BLOCK
  73. menu "DOS/FAT/NT Filesystems"
  74. source "fs/fat/Kconfig"
  75. source "fs/ntfs/Kconfig"
  76. endmenu
  77. endif # BLOCK
  78. menu "Pseudo filesystems"
  79. source "fs/proc/Kconfig"
  80. source "fs/sysfs/Kconfig"
  81. config TMPFS
  82. bool "Virtual memory file system support (former shm fs)"
  83. depends on SHMEM
  84. help
  85. Tmpfs is a file system which keeps all files in virtual memory.
  86. Everything in tmpfs is temporary in the sense that no files will be
  87. created on your hard drive. The files live in memory and swap
  88. space. If you unmount a tmpfs instance, everything stored therein is
  89. lost.
  90. See <file:Documentation/filesystems/tmpfs.txt> for details.
  91. config TMPFS_XATTR
  92. bool "Tmpfs extended attributes"
  93. depends on TMPFS
  94. default n
  95. help
  96. Extended attributes are name:value pairs associated with inodes by
  97. the kernel or by users (see the attr(5) manual page, or visit
  98. <http://acl.bestbits.at/> for details).
  99. Currently this enables support for the trusted.* and
  100. security.* namespaces.
  101. If unsure, say N.
  102. You need this for POSIX ACL support on tmpfs.
  103. config TMPFS_POSIX_ACL
  104. bool "Tmpfs POSIX Access Control Lists"
  105. depends on TMPFS_XATTR
  106. select GENERIC_ACL
  107. help
  108. POSIX Access Control Lists (ACLs) support permissions for users and
  109. groups beyond the owner/group/world scheme.
  110. To learn more about Access Control Lists, visit the POSIX ACLs for
  111. Linux website <http://acl.bestbits.at/>.
  112. If you don't know what Access Control Lists are, say N.
  113. config HUGETLBFS
  114. bool "HugeTLB file system support"
  115. depends on X86 || IA64 || SPARC64 || (S390 && 64BIT) || \
  116. SYS_SUPPORTS_HUGETLBFS || BROKEN
  117. help
  118. hugetlbfs is a filesystem backing for HugeTLB pages, based on
  119. ramfs. For architectures that support it, say Y here and read
  120. <file:Documentation/vm/hugetlbpage.txt> for details.
  121. If unsure, say N.
  122. config HUGETLB_PAGE
  123. def_bool HUGETLBFS
  124. source "fs/configfs/Kconfig"
  125. endmenu
  126. menuconfig MISC_FILESYSTEMS
  127. bool "Miscellaneous filesystems"
  128. default y
  129. ---help---
  130. Say Y here to get to see options for various miscellaneous
  131. filesystems, such as filesystems that came from other
  132. operating systems.
  133. This option alone does not add any kernel code.
  134. If you say N, all options in this submenu will be skipped and
  135. disabled; if unsure, say Y here.
  136. if MISC_FILESYSTEMS
  137. source "fs/adfs/Kconfig"
  138. source "fs/affs/Kconfig"
  139. source "fs/ecryptfs/Kconfig"
  140. source "fs/hfs/Kconfig"
  141. source "fs/hfsplus/Kconfig"
  142. source "fs/befs/Kconfig"
  143. source "fs/bfs/Kconfig"
  144. source "fs/efs/Kconfig"
  145. source "fs/jffs2/Kconfig"
  146. # UBIFS File system configuration
  147. source "fs/ubifs/Kconfig"
  148. source "fs/logfs/Kconfig"
  149. source "fs/cramfs/Kconfig"
  150. source "fs/squashfs/Kconfig"
  151. source "fs/freevxfs/Kconfig"
  152. source "fs/minix/Kconfig"
  153. source "fs/omfs/Kconfig"
  154. source "fs/hpfs/Kconfig"
  155. source "fs/qnx4/Kconfig"
  156. source "fs/romfs/Kconfig"
  157. source "fs/pstore/Kconfig"
  158. source "fs/sysv/Kconfig"
  159. source "fs/ufs/Kconfig"
  160. source "fs/exofs/Kconfig"
  161. endif # MISC_FILESYSTEMS
  162. menuconfig NETWORK_FILESYSTEMS
  163. bool "Network File Systems"
  164. default y
  165. depends on NET
  166. ---help---
  167. Say Y here to get to see options for network filesystems and
  168. filesystem-related networking code, such as NFS daemon and
  169. RPCSEC security modules.
  170. This option alone does not add any kernel code.
  171. If you say N, all options in this submenu will be skipped and
  172. disabled; if unsure, say Y here.
  173. if NETWORK_FILESYSTEMS
  174. source "fs/nfs/Kconfig"
  175. source "fs/nfsd/Kconfig"
  176. config LOCKD
  177. tristate
  178. depends on FILE_LOCKING
  179. config LOCKD_V4
  180. bool
  181. depends on NFSD_V3 || NFS_V3
  182. depends on FILE_LOCKING
  183. default y
  184. config NFS_ACL_SUPPORT
  185. tristate
  186. select FS_POSIX_ACL
  187. config NFS_COMMON
  188. bool
  189. depends on NFSD || NFS_FS
  190. default y
  191. source "net/sunrpc/Kconfig"
  192. source "fs/ceph/Kconfig"
  193. source "fs/cifs/Kconfig"
  194. source "fs/ncpfs/Kconfig"
  195. source "fs/coda/Kconfig"
  196. source "fs/afs/Kconfig"
  197. source "fs/9p/Kconfig"
  198. endif # NETWORK_FILESYSTEMS
  199. if BLOCK
  200. menu "Partition Types"
  201. source "fs/partitions/Kconfig"
  202. endmenu
  203. endif
  204. source "fs/nls/Kconfig"
  205. source "fs/dlm/Kconfig"
  206. endmenu