diff options
author | Mike Frysinger | 2005-09-24 05:55:03 +0000 |
---|---|---|
committer | Mike Frysinger | 2005-09-24 05:55:03 +0000 |
commit | a1c6a57fea0aeb08cc23d68684252fc7e1508f59 (patch) | |
tree | c328fde6f401c5e16979ca68dbd17e76302e352f /e2fsprogs/Config.in | |
parent | 9ac178ab408354bcf61ee19a071fdc1e4f163737 (diff) | |
download | busybox-a1c6a57fea0aeb08cc23d68684252fc7e1508f59.zip busybox-a1c6a57fea0aeb08cc23d68684252fc7e1508f59.tar.gz |
make e2label and findfs optional
Diffstat (limited to 'e2fsprogs/Config.in')
-rw-r--r-- | e2fsprogs/Config.in | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/e2fsprogs/Config.in b/e2fsprogs/Config.in index c4022bb..4a564df 100644 --- a/e2fsprogs/Config.in +++ b/e2fsprogs/Config.in @@ -25,15 +25,25 @@ config CONFIG_MKE2FS symlinks 'mkfs.ext2' and 'mkfs.ext3' are also provided. config CONFIG_TUNE2FS - bool "tune2fs (and e2label/findfs)" + bool "tune2fs" default n help tune2fs allows the system administrator to adjust various tunable filesystem parameters on Linux ext2/ext3 filesystems. +config CONFIG_E2LABEL + bool "e2label" + default n + depends on CONFIG_TUNE2FS + help e2label will display or change the filesystem label on the ext2 filesystem located on device. +config CONFIG_FINDFS + bool "findfs" + default n + depends on CONFIG_TUNE2FS + help findfs will search the disks in the system looking for a filesystem which has a label matching label or a UUID equal to uuid. |