diff options
author | Rob Landley <rob@landley.net> | 2005-09-24 22:41:08 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-09-24 22:41:08 +0000 |
commit | 16722554bf383b640c6835c21bcf5cbde2327c13 (patch) | |
tree | ceb45c540786bce685f26422360c2ea4d5f3ccb4 /include | |
parent | 5423df9ebc7436dc1e0c79ad68a6b9acc8895e2b (diff) | |
download | busybox-w32-16722554bf383b640c6835c21bcf5cbde2327c13.tar.gz busybox-w32-16722554bf383b640c6835c21bcf5cbde2327c13.tar.bz2 busybox-w32-16722554bf383b640c6835c21bcf5cbde2327c13.zip |
Tito switched option parsing over to switch umount over to bb_getopt_ulflags().
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 fee8bc889..89e20a59a 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -3089,8 +3089,9 @@ | |||
3089 | "\nFlags:\n" "\t-a\tUnmount all file systems" \ | 3089 | "\nFlags:\n" "\t-a\tUnmount all file systems" \ |
3090 | USAGE_MTAB(" in /etc/mtab\n\t-n\tDon't erase /etc/mtab entries") \ | 3090 | USAGE_MTAB(" in /etc/mtab\n\t-n\tDon't erase /etc/mtab entries") \ |
3091 | "\n\t-r\tTry to remount devices as read-only if mount is busy" \ | 3091 | "\n\t-r\tTry to remount devices as read-only if mount is busy" \ |
3092 | USAGE_MOUNT_FORCE("\n\t-f\tForce umount (i.e., unreachable NFS server)") \ | 3092 | "\n\t-l\tLazy umount (detach filesystem)" \ |
3093 | USAGE_MOUNT_LOOP("\n\t-l\tDo not free loop device (if a loop device has been used)") | 3093 | "\n\t-f\tForce umount (i.e., unreachable NFS server)" \ |
3094 | USAGE_MOUNT_LOOP("\n\t-D\tDo not free loop device (if a loop device has been used)") | ||
3094 | #define umount_example_usage \ | 3095 | #define umount_example_usage \ |
3095 | "$ umount /dev/hdc1 \n" | 3096 | "$ umount /dev/hdc1 \n" |
3096 | 3097 | ||