diff options
author | ru <ru@FreeBSD.org> | 2001-05-23 14:58:19 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-05-23 14:58:19 +0000 |
commit | d6e286694d01e4503e4daeed19e3292fcaccd771 (patch) | |
tree | ab01e79c839ddfbf22ff2fcf59bb7af9d63e3c95 /sbin/mount_unionfs | |
parent | 196fd7759f1cf679623146c047cdcd0e200c93df (diff) | |
download | FreeBSD-src-d6e286694d01e4503e4daeed19e3292fcaccd771.zip FreeBSD-src-d6e286694d01e4503e4daeed19e3292fcaccd771.tar.gz |
Rename (after a repo-copy) some mount(8) programs:
mount_fdesc -> mount_fdescfs
mount_null -> mount_nullfs
mount_portal -> mount_portalfs
mount_umap -> mount_umapfs
mount_union -> mount_unionfs
Diffstat (limited to 'sbin/mount_unionfs')
-rw-r--r-- | sbin/mount_unionfs/Makefile | 6 | ||||
-rw-r--r-- | sbin/mount_unionfs/mount_unionfs.8 | 12 | ||||
-rw-r--r-- | sbin/mount_unionfs/mount_unionfs.c | 2 |
3 files changed, 10 insertions, 10 deletions
diff --git a/sbin/mount_unionfs/Makefile b/sbin/mount_unionfs/Makefile index 7e0df33..052327b 100644 --- a/sbin/mount_unionfs/Makefile +++ b/sbin/mount_unionfs/Makefile @@ -1,9 +1,9 @@ # @(#)Makefile 8.3 (Berkeley) 3/27/94 # $FreeBSD$ -PROG= mount_union -SRCS= mount_union.c getmntopts.c -MAN= mount_union.8 +PROG= mount_unionfs +SRCS= mount_unionfs.c getmntopts.c +MAN= mount_unionfs.8 MOUNT= ${.CURDIR}/../mount CFLAGS+=-I${MOUNT} diff --git a/sbin/mount_unionfs/mount_unionfs.8 b/sbin/mount_unionfs/mount_unionfs.8 index 163839e..76a2856 100644 --- a/sbin/mount_unionfs/mount_unionfs.8 +++ b/sbin/mount_unionfs/mount_unionfs.8 @@ -36,10 +36,10 @@ .\" $FreeBSD$ .\" .Dd March 27, 1994 -.Dt MOUNT_UNION 8 -.Os BSD 4.4 +.Dt MOUNT_UNIONFS 8 +.Os .Sh NAME -.Nm mount_union +.Nm mount_unionfs .Nd mount union filesystems .Sh SYNOPSIS .Nm @@ -86,7 +86,7 @@ See the man page for possible options and their meanings. .It Fl r Hide the lower layer completely in the same way as mounting with -.Xr mount_null 8 . +.Xr mount_nullfs 8 . .El .Pp To enforce filesystem security, the user mounting the filesystem @@ -147,7 +147,7 @@ and then only for lookups. The commands .Bd -literal -offset indent mount -t cd9660 -o ro /dev/cd0a /usr/src -mount -t union /var/obj /usr/src +mount -t unionfs /var/obj /usr/src .Ed .Pp mount the CD-ROM drive @@ -163,7 +163,7 @@ even though it is stored on a CD-ROM. .Pp The command .Bd -literal -offset indent -mount -t union -o -b /sys $HOME/sys +mount -t unionfs -o -b /sys $HOME/sys .Ed .Pp attaches the system source tree below the diff --git a/sbin/mount_unionfs/mount_unionfs.c b/sbin/mount_unionfs/mount_unionfs.c index d07f427..cc2785b 100644 --- a/sbin/mount_unionfs/mount_unionfs.c +++ b/sbin/mount_unionfs/mount_unionfs.c @@ -155,6 +155,6 @@ void usage() { (void)fprintf(stderr, - "usage: mount_union [-br] [-o options] target_fs mount_point\n"); + "usage: mount_unionfs [-br] [-o options] target_fs mount_point\n"); exit(EX_USAGE); } |