summaryrefslogtreecommitdiffstats
path: root/rules/e2fsprogs.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2008-06-05 15:51:38 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2008-06-05 15:51:38 +0000
commitb7e004e36ff5662d7aa6eb95ce5c1797cc685a49 (patch)
tree26ed599ae53c546a83c425f6bb58f86e5288eec5 /rules/e2fsprogs.in
parentf2af73ec86d061d9c907847d21d05d3ad2799cfa (diff)
downloadptxdist-b7e004e36ff5662d7aa6eb95ce5c1797cc685a49.tar.gz
ptxdist-b7e004e36ff5662d7aa6eb95ce5c1797cc685a49.tar.xz
* e2fsutils: make modular
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8392 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/e2fsprogs.in')
-rw-r--r--rules/e2fsprogs.in13
1 files changed, 6 insertions, 7 deletions
diff --git a/rules/e2fsprogs.in b/rules/e2fsprogs.in
index 3810ded8f..5a80608f1 100644
--- a/rules/e2fsprogs.in
+++ b/rules/e2fsprogs.in
@@ -1,15 +1,17 @@
menuconfig E2FSPROGS
- bool "e2fsprogs "
+ tristate
+ prompt "e2fsprogs "
help
The e2fsprogs package provides the filesystem utilities for use
with the ext2 filesystem. It also supports the ext3 filesystem
with journaling support.
+if E2FSPROGS
+
config E2FSPROGS_MKFS
bool
prompt "mke2fs"
default y
- depends on E2FSPROGS
depends on !BB_CONFIG_MKE2FS
help
This installs /sbin/mke2fs, the filesystem builder for
@@ -17,13 +19,11 @@ config E2FSPROGS_MKFS
comment "Busybox' mke2fs is selected"
depends on BB_CONFIG_MKE2FS
- depends on E2FSPROGS
config E2FSPROGS_E2FSCK
bool
prompt "e2fsck"
default y
- depends on E2FSPROGS
depends on !BB_CONFIG_E2FSCK
help
This will install /sbin/e2fsck, the filesystem
@@ -31,12 +31,10 @@ config E2FSPROGS_E2FSCK
comment "Busybox' e2fsck is selected"
depends on BB_CONFIG_E2FSCK
- depends on E2FSPROGS
config E2FSPROGS_TUNE2FS
bool
prompt "tune2fs, findfs, e2label"
- depends on E2FSPROGS
depends on !BB_CONFIG_TUNE2FS
help
This will install /sbin/tune2fs, /sbin/findfs, /sbin/e2label
@@ -53,5 +51,6 @@ config E2FSPROGS_TUNE2FS
comment "Busybox' tune2fs is selected"
depends on BB_CONFIG_TUNE2FS
- depends on E2FSPROGS
+
+endif