Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 for details).
  14. If unsure, say N.
  15. config EXT2_FS_POSIX_ACL
  16. bool "Ext2 POSIX Access Control Lists"
  17. depends on EXT2_FS_XATTR
  18. select FS_POSIX_ACL
  19. help
  20. Posix Access Control Lists (ACLs) support permissions for users and
  21. groups beyond the owner/group/world scheme.
  22. If you don't know what Access Control Lists are, say N
  23. config EXT2_FS_SECURITY
  24. bool "Ext2 Security Labels"
  25. depends on EXT2_FS_XATTR
  26. help
  27. Security labels support alternative access control models
  28. implemented by security modules like SELinux. This option
  29. enables an extended attribute handler for file security
  30. labels in the ext2 filesystem.
  31. If you are not using a security module that requires using
  32. extended attributes for file security labels, say N.