diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-19 11:48:29 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-19 11:48:29 +0200 |
commit | e2e4cc249dc1bd4b280846f55a36208674eadd55 (patch) | |
tree | 1014c5fcfcc4bb6b8c9420d3dccff230785e3e22 /include | |
parent | b96159d6631065512c775f560b1bd9d1f6ffd1ec (diff) | |
download | busybox-e2e4cc249dc1bd4b280846f55a36208674eadd55.tar.gz |
mount: support -i; pass through -f and -n to helpers as necessary
function old new delta
mount_it_now 298 345 +47
singlemount 776 772 -4
Signed-off-by: Colin Watson <cjwatson@ubuntu.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index 0f6378e06..c6006aa65 100644 --- a/include/usage.h +++ b/include/usage.h @@ -2901,6 +2901,9 @@ "\n -f Dry run" \ ) \ ) \ + IF_FEATURE_MOUNT_HELPERS( \ + "\n -i Don't run mount helper" \ + ) \ IF_FEATURE_MTAB_SUPPORT( \ "\n -n Don't update /etc/mtab" \ ) \ |