1# SPDX-License-Identifier: GPL-2.0-only 2config 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 8 To compile this file system support as a module, choose M here: the 9 module will be called ext2. 10 11 If unsure, say Y. 12 13config EXT2_FS_XATTR 14 bool "Ext2 extended attributes" 15 depends on EXT2_FS 16 help 17 Extended attributes are name:value pairs associated with inodes by 18 the kernel or by users (see the attr(5) manual page for details). 19 20 If unsure, say N. 21 22config EXT2_FS_POSIX_ACL 23 bool "Ext2 POSIX Access Control Lists" 24 depends on EXT2_FS_XATTR 25 select FS_POSIX_ACL 26 help 27 Posix Access Control Lists (ACLs) support permissions for users and 28 groups beyond the owner/group/world scheme. 29 30 If you don't know what Access Control Lists are, say N 31 32config EXT2_FS_SECURITY 33 bool "Ext2 Security Labels" 34 depends on EXT2_FS_XATTR 35 help 36 Security labels support alternative access control models 37 implemented by security modules like SELinux. This option 38 enables an extended attribute handler for file security 39 labels in the ext2 filesystem. 40 41 If you are not using a security module that requires using 42 extended attributes for file security labels, say N. 43