summaryrefslogtreecommitdiffstats
path: root/rules/e2fsprogs.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2007-04-26 09:44:06 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2007-04-26 09:44:06 +0000
commit65a8fe3c660eebdc46a71923d7f3e58672c8554d (patch)
tree5f15ef9c17f627c66fb54f34ffd29d1f16dbd52b /rules/e2fsprogs.in
parenta6f98771041c3a4d8a0a3fc5246911068826a676 (diff)
downloadptxdist-65a8fe3c660eebdc46a71923d7f3e58672c8554d.tar.gz
ptxdist-65a8fe3c660eebdc46a71923d7f3e58672c8554d.tar.xz
busybox: revert BB_ vs. BB_CONFIG_ change which comes due to the fact
that busybox uses a new kconfig. This patch makes it possible to migrate old configurations in a sane time again ... git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@7122 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/e2fsprogs.in')
-rw-r--r--rules/e2fsprogs.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/rules/e2fsprogs.in b/rules/e2fsprogs.in
index 54b3bb6f9..0e9021020 100644
--- a/rules/e2fsprogs.in
+++ b/rules/e2fsprogs.in
@@ -10,13 +10,13 @@ config E2FSPROGS_MKFS
prompt "Install mke2fs"
default y
depends on E2FSPROGS
- depends on !BB_MKE2FS
+ 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_MKE2FS
+ depends on BB_CONFIG_MKE2FS
depends on E2FSPROGS
config E2FSPROGS_E2FSCK
@@ -24,20 +24,20 @@ config E2FSPROGS_E2FSCK
prompt "Install e2fsck"
default y
depends on E2FSPROGS
- depends on !BB_E2FSCK
+ 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_E2FSCK
+ depends on BB_CONFIG_E2FSCK
depends on E2FSPROGS
config E2FSPROGS_TUNE2FS
bool
prompt "Install tune2fs, findfs, e2label"
depends on E2FSPROGS
- depends on !BB_TUNE2FS
+ 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
@@ -52,5 +52,5 @@ config E2FSPROGS_TUNE2FS
e2label can display and edit ext2 and ext3 filesystem labels.
comment "Busybox' tune2fs is selected"
- depends on BB_TUNE2FS
+ depends on BB_CONFIG_TUNE2FS
depends on E2FSPROGS