diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-29 12:54:16 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-29 12:54:16 +0000 |
commit | 7a1ddf20f343b3dc08e7a413e901d78681641518 (patch) | |
tree | 33cc52e79bb300887f47dc9405d6451d106194d8 /include | |
parent | d723fb155d3db4152a4781dff550cd0f0ce290b5 (diff) | |
download | busybox-w32-7a1ddf20f343b3dc08e7a413e901d78681641518.tar.gz busybox-w32-7a1ddf20f343b3dc08e7a413e901d78681641518.tar.bz2 busybox-w32-7a1ddf20f343b3dc08e7a413e901d78681641518.zip |
mountpoint: add -n option (by Vladimir)
text data bss dec hex filename
799859 560 7748 808167 c54e7 busybox_old
799845 560 7748 808153 c54d9 busybox_unstripped
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 502fea7a0..000b864d6 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -2788,12 +2788,13 @@ | |||
2788 | "Returns 0 for success, number of failed mounts for -a, or errno for one mount." | 2788 | "Returns 0 for success, number of failed mounts for -a, or errno for one mount." |
2789 | 2789 | ||
2790 | #define mountpoint_trivial_usage \ | 2790 | #define mountpoint_trivial_usage \ |
2791 | "[-q] <[-d] DIR | -x DEVICE>" | 2791 | "[-q] <[-dn] DIR | -x DEVICE>" |
2792 | #define mountpoint_full_usage "\n\n" \ | 2792 | #define mountpoint_full_usage "\n\n" \ |
2793 | "mountpoint checks if the directory is a mountpoint\n" \ | 2793 | "Check if the directory is a mountpoint\n" \ |
2794 | "\nOptions:" \ | 2794 | "\nOptions:" \ |
2795 | "\n -q Quiet" \ | 2795 | "\n -q Quiet" \ |
2796 | "\n -d Print major/minor device number of the filesystem" \ | 2796 | "\n -d Print major/minor device number of the filesystem" \ |
2797 | "\n -n Print device name of the filesystem" \ | ||
2797 | "\n -x Print major/minor device number of the blockdevice" \ | 2798 | "\n -x Print major/minor device number of the blockdevice" \ |
2798 | 2799 | ||
2799 | #define mountpoint_example_usage \ | 2800 | #define mountpoint_example_usage \ |