blob: 1248ff4ef56254dd1fbe04e3bfd1d66ded0b3ba1 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Alexey Dobriyan6da0b382008-10-20 22:28:45 +04002config EXT2_FS
3 tristate "Second extended fs support"
Christoph Hellwig8b1e7072021-07-20 15:33:39 +02004 select FS_IOMAP
Alexey Dobriyan6da0b382008-10-20 22:28:45 +04005 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
Adam Borowski91581e42017-12-20 14:58:52 +010018 the kernel or by users (see the attr(5) manual page for details).
Alexey Dobriyan6da0b382008-10-20 22:28:45 +040019
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
Alexey Dobriyan6da0b382008-10-20 22:28:45 +040030 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.