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