Kconfig 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. config EXT4_FS
  2. tristate "The Extended 4 (ext4) filesystem"
  3. select JBD2
  4. select CRC16
  5. help
  6. This is the next generation of the ext3 filesystem.
  7. Unlike the change from ext2 filesystem to ext3 filesystem,
  8. the on-disk format of ext4 is not forwards compatible with
  9. ext3; it is based on extent maps and it supports 48-bit
  10. physical block numbers. The ext4 filesystem also supports delayed
  11. allocation, persistent preallocation, high resolution time stamps,
  12. and a number of other features to improve performance and speed
  13. up fsck time. For more information, please see the web pages at
  14. http://ext4.wiki.kernel.org.
  15. The ext4 filesystem will support mounting an ext3
  16. filesystem; while there will be some performance gains from
  17. the delayed allocation and inode table readahead, the best
  18. performance gains will require enabling ext4 features in the
  19. filesystem, or formatting a new filesystem as an ext4
  20. filesystem initially.
  21. To compile this file system support as a module, choose M here. The
  22. module will be called ext4.
  23. If unsure, say N.
  24. config EXT4DEV_COMPAT
  25. bool "Enable ext4dev compatibility"
  26. depends on EXT4_FS
  27. help
  28. Starting with 2.6.28, the name of the ext4 filesystem was
  29. renamed from ext4dev to ext4. Unfortunately there are some
  30. legacy userspace programs (such as klibc's fstype) have
  31. "ext4dev" hardcoded.
  32. To enable backwards compatibility so that systems that are
  33. still expecting to mount ext4 filesystems using ext4dev,
  34. chose Y here. This feature will go away by 2.6.31, so
  35. please arrange to get your userspace programs fixed!
  36. config EXT4_FS_XATTR
  37. bool "Ext4 extended attributes"
  38. depends on EXT4_FS
  39. default y
  40. help
  41. Extended attributes are name:value pairs associated with inodes by
  42. the kernel or by users (see the attr(5) manual page, or visit
  43. <http://acl.bestbits.at/> for details).
  44. If unsure, say N.
  45. You need this for POSIX ACL support on ext4.
  46. config EXT4_FS_POSIX_ACL
  47. bool "Ext4 POSIX Access Control Lists"
  48. depends on EXT4_FS_XATTR
  49. select FS_POSIX_ACL
  50. help
  51. POSIX Access Control Lists (ACLs) support permissions for users and
  52. groups beyond the owner/group/world scheme.
  53. To learn more about Access Control Lists, visit the POSIX ACLs for
  54. Linux website <http://acl.bestbits.at/>.
  55. If you don't know what Access Control Lists are, say N
  56. config EXT4_FS_SECURITY
  57. bool "Ext4 Security Labels"
  58. depends on EXT4_FS_XATTR
  59. help
  60. Security labels support alternative access control models
  61. implemented by security modules like SELinux. This option
  62. enables an extended attribute handler for file security
  63. labels in the ext4 filesystem.
  64. If you are not using a security module that requires using
  65. extended attributes for file security labels, say N.