diff options
author | wollman <wollman@FreeBSD.org> | 1995-01-22 22:54:56 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-01-22 22:54:56 +0000 |
commit | 47c6f0361a3809cfcf75ae80ef14683462955d66 (patch) | |
tree | b3d9c9a3d5ab81e385ad3cfb7ceaa7592da5c66d /sbin/mount | |
parent | 496ce22adecebc87f6efd84e48c236feedab96bb (diff) | |
download | FreeBSD-src-47c6f0361a3809cfcf75ae80ef14683462955d66.zip FreeBSD-src-47c6f0361a3809cfcf75ae80ef14683462955d66.tar.gz |
Document the requirements of dynamic loading on mounting order. Cross-ref
to vfsload(3).
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.8 | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index e2c53c8..508ca70 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -170,7 +170,9 @@ is used to indicate the file system type. The type .Ar ufs is the default. -The \fI-t\fP option can be used +The +.Fl t +option can be used to indicate that the actions should only be taken on filesystems of the specified type. More than one type may be specified in a comma separated list. @@ -199,6 +201,20 @@ where is replaced by the type name. For example, nfs filesystems are mounted by the program .Pa /sbin/mount_nfs . +.Pp +Most filesystems will be dynamically loaded by their mount programs +if not already present in the kernel, using the +.Xr vfsload 3 +subroutine. Because this mechanism requires writable temporary space, +the filesystem type containing +.Pa /tmp +must be compiled into the kernel, and the filesystems containing +.Pa /tmp +and +.Pa /usr/bin/ld +must be listed in +.Pa /etc/fstab +before any filesystems which might be dynamically loaded. .It Fl u The .Fl u @@ -241,6 +257,7 @@ file system table .El .Sh SEE ALSO .Xr mount 2 , +.Xr vfsload 3 , .Xr fstab 5 , .Xr mount_cd9660 8 , .Xr mount_fdesc 8 , |