summaryrefslogtreecommitdiffstats
path: root/rules/e2fsprogs.in
blob: 0e9021020475f0f643ab7b5ecd5111ad8ddee1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
menuconfig E2FSPROGS
	bool "e2fsprogs                     "
	help
	 The e2fsprogs package provides the filesystem utilities for use
	 with the ext2 filesystem. It also supports the ext3 filesystem
	 with journaling support.

config E2FSPROGS_MKFS
	bool
	prompt "Install mke2fs"
	default y
	depends on E2FSPROGS
	depends on !BB_CONFIG_MKE2FS
	help
	 This installs /sbin/mke2fs, the filesystem builder for
	 ext2 and ext3

comment "Busybox' mke2fs is selected"
	depends on BB_CONFIG_MKE2FS
	depends on E2FSPROGS

config E2FSPROGS_E2FSCK
	bool
	prompt "Install e2fsck"
	default y
	depends on E2FSPROGS
	depends on !BB_CONFIG_E2FSCK
	help
	 This will install /sbin/e2fsck, the filesystem
	 checking and recovery tool for ext2 and ext3.

comment "Busybox' e2fsck is selected"
	depends on BB_CONFIG_E2FSCK
	depends on E2FSPROGS

config E2FSPROGS_TUNE2FS
	bool
	prompt "Install tune2fs, findfs, e2label"
	depends on E2FSPROGS
	depends on !BB_CONFIG_TUNE2FS
	help
	 This will install /sbin/tune2fs, /sbin/findfs, /sbin/e2label
	 to your target. Please note, that all thre share the same
	 binary (tune2fs).

	 tune2fs lets you modify various aspects of your ext2 oder ext3
	 filesystem. See tune2fs --help for details.

	 findfs will find any filesystem identified by a filesystem-label
	 or UUID and return the name of the corresponding device node.

	 e2label can display and edit ext2 and ext3 filesystem labels.

comment "Busybox' tune2fs is selected"
	depends on BB_CONFIG_TUNE2FS
	depends on E2FSPROGS