Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config EXT2_FS
  3. tristate "Second extended fs support"
  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 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. If you don't know what Access Control Lists are, say N
  24. config EXT2_FS_SECURITY
  25. bool "Ext2 Security Labels"
  26. depends on EXT2_FS_XATTR
  27. help
  28. Security labels support alternative access control models
  29. implemented by security modules like SELinux. This option
  30. enables an extended attribute handler for file security
  31. labels in the ext2 filesystem.
  32. If you are not using a security module that requires using
  33. extended attributes for file security labels, say N.