Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config EXT2_FS
  3. tristate "Second extended fs support"
  4. select FS_IOMAP
  5. help
  6. Ext2 is a standard Linux file system for hard disks.
  7. To compile this file system support as a module, choose M here: the
  8. module will be called ext2.
  9. If unsure, say Y.
  10. config EXT2_FS_XATTR
  11. bool "Ext2 extended attributes"
  12. depends on EXT2_FS
  13. help
  14. Extended attributes are name:value pairs associated with inodes by
  15. the kernel or by users (see the attr(5) manual page 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. If you don't know what Access Control Lists are, say N
  25. config EXT2_FS_SECURITY
  26. bool "Ext2 Security Labels"
  27. depends on EXT2_FS_XATTR
  28. help
  29. Security labels support alternative access control models
  30. implemented by security modules like SELinux. This option
  31. enables an extended attribute handler for file security
  32. labels in the ext2 filesystem.
  33. If you are not using a security module that requires using
  34. extended attributes for file security labels, say N.