Kconfig 1.3 KB

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