diff options
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index dc8058a20..662227818 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -1922,6 +1922,20 @@ | |||
1922 | "$ mount /dev/fd0 /mnt -t msdos -o ro\n" \ | 1922 | "$ mount /dev/fd0 /mnt -t msdos -o ro\n" \ |
1923 | "$ mount /tmp/diskimage /opt -t ext2 -o loop\n" | 1923 | "$ mount /tmp/diskimage /opt -t ext2 -o loop\n" |
1924 | 1924 | ||
1925 | #define mountpoint_trivial_usage \ | ||
1926 | "[-q] <[-d] DIR | -x DEVICE>" | ||
1927 | #define mountpoint_full_usage \ | ||
1928 | "mountpoint checks if the directory is a mountpoint\n\n" \ | ||
1929 | "Options:\n" \ | ||
1930 | "\t-q:\t\tBe more quiet\n" \ | ||
1931 | "\t-d:\t\tPrint major/minor device number of the filesystem\n" \ | ||
1932 | "\t-x:\t\tPrint major/minor device number of the blockdevice" | ||
1933 | #define mountpoint_example_usage \ | ||
1934 | "$ mountpoint /proc\n" \ | ||
1935 | "/proc is not a mountpoint\n" \ | ||
1936 | "$ mountpoint /sys\n" \ | ||
1937 | "/sys is a mountpoint\n" | ||
1938 | |||
1925 | #define mt_trivial_usage \ | 1939 | #define mt_trivial_usage \ |
1926 | "[-f device] opcode value" | 1940 | "[-f device] opcode value" |
1927 | #define mt_full_usage \ | 1941 | #define mt_full_usage \ |