aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-05 19:49:33 +0000
committerErik Andersen <andersen@codepoet.org>2000-05-05 19:49:33 +0000
commit6c5f2c602174c7fe0830a1fc4fe5b3dde5ed7068 (patch)
treee5b0d03dee3ca473422d617ce6985d60f0985c04 /docs
parent9b15e50835dba5b9c86df2cfa89aa8d8ce67cb4a (diff)
downloadbusybox-w32-6c5f2c602174c7fe0830a1fc4fe5b3dde5ed7068.tar.gz
busybox-w32-6c5f2c602174c7fe0830a1fc4fe5b3dde5ed7068.tar.bz2
busybox-w32-6c5f2c602174c7fe0830a1fc4fe5b3dde5ed7068.zip
Add support for "noatime" and "nodiratime" mount flags to mount.
Change umount "-f" to mean force, and actually use umount2. Change umount "-l" to mean "Do not free loop device". Updates docs accordingly. -Erik
Diffstat (limited to 'docs')
-rw-r--r--docs/busybox.pod38
1 files changed, 20 insertions, 18 deletions
diff --git a/docs/busybox.pod b/docs/busybox.pod
index ac492ab15..6a18a0499 100644
--- a/docs/busybox.pod
+++ b/docs/busybox.pod
@@ -1111,21 +1111,22 @@ Usage: mount [flags]
1111 1111
1112Flags: 1112Flags:
1113 1113
1114 -a: Mount all file systems in fstab. 1114 -a: Mount all file systems in fstab.
1115 -o option: One of many filesystem options, listed below. 1115 -o option: One of many filesystem options, listed below.
1116 -r: Mount the filesystem read-only. 1116 -r: Mount the filesystem read-only.
1117 -t filesystem-type: Specify the filesystem type. 1117 -t fs-type: Specify the filesystem type.
1118 -w: Mount for reading and writing (default). 1118 -w: Mount for reading and writing (default).
1119 1119
1120Options for use with the "B<-o>" flag: 1120Options for use with the "-o" flag:
1121 1121
1122 async / sync: Writes are asynchronous / synchronous. 1122 async/sync: Writes are asynchronous / synchronous.
1123 dev / nodev: Allow use of special device files / disallow them. 1123 atime/noatime: Enable / disable updates to inode access times.
1124 exec / noexec: Allow use of executable files / disallow them. 1124 dev/nodev: Allow use of special device files / disallow them.
1125 loop: Mounts a file via loop device. 1125 exec/noexec: Allow use of executable files / disallow them.
1126 suid / nosuid: Allow set-user-id-root programs / disallow them. 1126 loop: Mounts a file via loop device.
1127 remount: Re-mount a currently-mounted filesystem, changing its flags. 1127 suid/nosuid: Allow set-user-id-root programs / disallow them.
1128 ro / rw: Mount for read-only / read-write. 1128 remount: Re-mount a currently-mounted filesystem, changing its flags.
1129 ro/rw: Mount for read-only / read-write.
1129 There are EVEN MORE flags that are specific to each filesystem. 1130 There are EVEN MORE flags that are specific to each filesystem.
1130 You'll have to see the written documentation for those. 1131 You'll have to see the written documentation for those.
1131 1132
@@ -1663,9 +1664,10 @@ Usage: umount [flags] filesystem|directory
1663 1664
1664Flags: 1665Flags:
1665 1666
1666 -a: Unmount all file systems 1667 -a: Unmount all file systems
1667 -r: Try to remount devices as read-only if mount is busy 1668 -r: Try to remount devices as read-only if mount is busy
1668 -f: Do not free loop device (if a loop device has been used) 1669 -f: Force filesystem umount (i.e. unreachable NFS server)
1670 -l: Do not free loop device (if a loop device has been used)
1669 1671
1670Example: 1672Example:
1671 1673
@@ -1876,4 +1878,4 @@ Enrique Zanardi <ezanardi@ull.es>
1876 1878
1877=cut 1879=cut
1878 1880
1879# $Id: busybox.pod,v 1.27 2000/05/02 06:40:02 erik Exp $ 1881# $Id: busybox.pod,v 1.28 2000/05/05 19:49:33 erik Exp $