Kconfig 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. # Ext3 configs are here for backward compatibility with old configs which may
  2. # have EXT3_FS set but not EXT4_FS set and thus would result in non-bootable
  3. # kernels after the removal of ext3 driver.
  4. config EXT3_FS
  5. tristate "The Extended 3 (ext3) filesystem"
  6. # These must match EXT4_FS selects...
  7. select EXT4_FS
  8. select JBD2
  9. select CRC16
  10. select CRYPTO
  11. select CRYPTO_CRC32C
  12. help
  13. This config option is here only for backward compatibility. ext3
  14. filesystem is now handled by the ext4 driver.
  15. config EXT3_FS_POSIX_ACL
  16. bool "Ext3 POSIX Access Control Lists"
  17. depends on EXT3_FS
  18. select EXT4_FS_POSIX_ACL
  19. select FS_POSIX_ACL
  20. help
  21. This config option is here only for backward compatibility. ext3
  22. filesystem is now handled by the ext4 driver.
  23. config EXT3_FS_SECURITY
  24. bool "Ext3 Security Labels"
  25. depends on EXT3_FS
  26. select EXT4_FS_SECURITY
  27. help
  28. This config option is here only for backward compatibility. ext3
  29. filesystem is now handled by the ext4 driver.
  30. config EXT4_FS
  31. tristate "The Extended 4 (ext4) filesystem"
  32. # Please update EXT3_FS selects when changing these
  33. select JBD2
  34. select CRC16
  35. select CRYPTO
  36. select CRYPTO_CRC32C
  37. help
  38. This is the next generation of the ext3 filesystem.
  39. Unlike the change from ext2 filesystem to ext3 filesystem,
  40. the on-disk format of ext4 is not forwards compatible with
  41. ext3; it is based on extent maps and it supports 48-bit
  42. physical block numbers. The ext4 filesystem also supports delayed
  43. allocation, persistent preallocation, high resolution time stamps,
  44. and a number of other features to improve performance and speed
  45. up fsck time. For more information, please see the web pages at
  46. http://ext4.wiki.kernel.org.
  47. The ext4 filesystem supports mounting an ext3 filesystem; while there
  48. are some performance gains from the delayed allocation and inode
  49. table readahead, the best performance gains require enabling ext4
  50. features in the filesystem using tune2fs, or formatting a new
  51. filesystem as an ext4 filesystem initially. Without explicit enabling
  52. of ext4 features, the on disk filesystem format stays fully backward
  53. compatible.
  54. To compile this file system support as a module, choose M here. The
  55. module will be called ext4.
  56. If unsure, say N.
  57. config EXT4_USE_FOR_EXT2
  58. bool "Use ext4 for ext2 file systems"
  59. depends on EXT4_FS
  60. depends on EXT2_FS=n
  61. default y
  62. help
  63. Allow the ext4 file system driver code to be used for ext2
  64. file system mounts. This allows users to reduce their
  65. compiled kernel size by using one file system driver for
  66. ext2, ext3, and ext4 file systems.
  67. config EXT4_FS_POSIX_ACL
  68. bool "Ext4 POSIX Access Control Lists"
  69. depends on EXT4_FS
  70. select FS_POSIX_ACL
  71. help
  72. POSIX Access Control Lists (ACLs) support permissions for users and
  73. groups beyond the owner/group/world scheme.
  74. To learn more about Access Control Lists, visit the POSIX ACLs for
  75. Linux website <http://acl.bestbits.at/>.
  76. If you don't know what Access Control Lists are, say N
  77. config EXT4_FS_SECURITY
  78. bool "Ext4 Security Labels"
  79. depends on EXT4_FS
  80. help
  81. Security labels support alternative access control models
  82. implemented by security modules like SELinux. This option
  83. enables an extended attribute handler for file security
  84. labels in the ext4 filesystem.
  85. If you are not using a security module that requires using
  86. extended attributes for file security labels, say N.
  87. config EXT4_ENCRYPTION
  88. tristate "Ext4 Encryption"
  89. depends on EXT4_FS
  90. select CRYPTO_AES
  91. select CRYPTO_CBC
  92. select CRYPTO_ECB
  93. select CRYPTO_XTS
  94. select CRYPTO_CTS
  95. select CRYPTO_CTR
  96. select CRYPTO_SHA256
  97. select KEYS
  98. select ENCRYPTED_KEYS
  99. help
  100. Enable encryption of ext4 files and directories. This
  101. feature is similar to ecryptfs, but it is more memory
  102. efficient since it avoids caching the encrypted and
  103. decrypted pages in the page cache.
  104. config EXT4_FS_ENCRYPTION
  105. bool
  106. default y
  107. depends on EXT4_ENCRYPTION
  108. config EXT4_DEBUG
  109. bool "EXT4 debugging support"
  110. depends on EXT4_FS
  111. help
  112. Enables run-time debugging support for the ext4 filesystem.
  113. If you select Y here, then you will be able to turn on debugging
  114. with a command such as:
  115. echo 1 > /sys/module/ext4/parameters/mballoc_debug