Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config EXT2_FS
  2. tristate "Second extended fs support"
  3. select FS_IOMAP if FS_DAX
  4. help
  5. Ext2 is a standard Linux file system for hard disks.
  6. To compile this file system support as a module, choose M here: the
  7. module will be called ext2.
  8. If unsure, say Y.
  9. config EXT2_FS_XATTR
  10. bool "Ext2 extended attributes"
  11. depends on EXT2_FS
  12. help
  13. Extended attributes are name:value pairs associated with inodes by
  14. the kernel or by users (see the attr(5) manual page, or visit
  15. <http://acl.bestbits.at/> for details).
  16. If unsure, say N.
  17. config EXT2_FS_POSIX_ACL
  18. bool "Ext2 POSIX Access Control Lists"
  19. depends on EXT2_FS_XATTR
  20. select FS_POSIX_ACL
  21. help
  22. Posix Access Control Lists (ACLs) support permissions for users and
  23. groups beyond the owner/group/world scheme.
  24. To learn more about Access Control Lists, visit the Posix ACLs for
  25. Linux website <http://acl.bestbits.at/>.
  26. If you don't know what Access Control Lists are, say N
  27. config EXT2_FS_SECURITY
  28. bool "Ext2 Security Labels"
  29. depends on EXT2_FS_XATTR
  30. help
  31. Security labels support alternative access control models
  32. implemented by security modules like SELinux. This option
  33. enables an extended attribute handler for file security
  34. labels in the ext2 filesystem.
  35. If you are not using a security module that requires using
  36. extended attributes for file security labels, say N.