blob: 91e873e3afb3a74c937470fd92e94b075fcff165 [file] [log] [blame]
Mike Frysingerd89e5e62005-04-24 05:15:12 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Linux Ext2 FS Progs"
7
8config CONFIG_CHATTR
9 bool "chattr"
10 default n
11 help
12 chattr changes the file attributes on a second extended file system.
13
Mike Frysinger51a43b42005-09-24 07:11:16 +000014config CONFIG_E2FSCK
15 bool "e2fsck"
16 default n
17 help
18 e2fsck is used to check Linux second extended file systems (ext2fs).
19 e2fsck also supports ext2 filesystems countaining a journal (ext3).
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000020 The normal compat symlinks 'fsck.ext2' and 'fsck.ext3' are also
Mike Frysinger51a43b42005-09-24 07:11:16 +000021 provided.
22
23config CONFIG_FSCK
24 bool "fsck"
25 default n
26 help
27 fsck is used to check and optionally repair one or more filesystems.
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000028 In actuality, fsck is simply a front-end for the various file system
Mike Frysinger51a43b42005-09-24 07:11:16 +000029 checkers (fsck.fstype) available under Linux.
30
Mike Frysingerd89e5e62005-04-24 05:15:12 +000031config CONFIG_LSATTR
32 bool "lsattr"
33 default n
34 help
35 lsattr lists the file attributes on a second extended file system.
36
Mike Frysinger6447ac02005-06-11 05:29:40 +000037config CONFIG_MKE2FS
38 bool "mke2fs"
39 default n
40 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000041 mke2fs is used to create an ext2/ext3 filesystem. The normal compat
Mike Frysinger6447ac02005-06-11 05:29:40 +000042 symlinks 'mkfs.ext2' and 'mkfs.ext3' are also provided.
43
Mike Frysinger174808c2005-06-11 01:14:09 +000044config CONFIG_TUNE2FS
Mike Frysingera1c6a572005-09-24 05:55:03 +000045 bool "tune2fs"
Mike Frysinger174808c2005-06-11 01:14:09 +000046 default n
47 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000048 tune2fs allows the system administrator to adjust various tunable
Mike Frysinger174808c2005-06-11 01:14:09 +000049 filesystem parameters on Linux ext2/ext3 filesystems.
50
Mike Frysingera1c6a572005-09-24 05:55:03 +000051config CONFIG_E2LABEL
52 bool "e2label"
53 default n
54 depends on CONFIG_TUNE2FS
55 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000056 e2label will display or change the filesystem label on the ext2
Mike Frysinger174808c2005-06-11 01:14:09 +000057 filesystem located on device.
58
Mike Frysingera1c6a572005-09-24 05:55:03 +000059config CONFIG_FINDFS
60 bool "findfs"
61 default n
62 depends on CONFIG_TUNE2FS
63 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000064 findfs will search the disks in the system looking for a filesystem
Mike Frysinger174808c2005-06-11 01:14:09 +000065 which has a label matching label or a UUID equal to uuid.
66
Mike Frysingerd89e5e62005-04-24 05:15:12 +000067endmenu