diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-03-29 18:28:50 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-03-29 18:28:50 +0000 |
commit | 2fa00f04397a922669d5b36d38aaa0ebaeb7a2bf (patch) | |
tree | ffe423a32f23acd73fff67f0276a38f391fcbe59 /sbin | |
parent | 0e3bcd1ac7e13d5aa28fe4c51f3eb37a442c8f9f (diff) |
Add a mount_udf(8) stub.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mount_udf/Makefile | 4 | ||||
-rw-r--r-- | sbin/mount_udf/mount_udf.8 | 29 |
2 files changed, 31 insertions, 2 deletions
diff --git a/sbin/mount_udf/Makefile b/sbin/mount_udf/Makefile index 4bf5a8b333a..709b403d594 100644 --- a/sbin/mount_udf/Makefile +++ b/sbin/mount_udf/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.1 2005/03/29 17:54:52 pedro Exp $ +# $OpenBSD: Makefile,v 1.2 2005/03/29 18:28:49 pedro Exp $ PROG= mount_udf SRCS= mount_udf.c getmntopts.c -MAN= +MAN= mount_udf.8 MOUNT= ${.CURDIR}/../mount CFLAGS+= -I${MOUNT} diff --git a/sbin/mount_udf/mount_udf.8 b/sbin/mount_udf/mount_udf.8 new file mode 100644 index 00000000000..54cdae00109 --- /dev/null +++ b/sbin/mount_udf/mount_udf.8 @@ -0,0 +1,29 @@ +.\" $OpenBSD: mount_udf.8,v 1.1 2005/03/29 18:28:49 pedro Exp $ +.\" Written by Pedro Martelletto <pedro@openbsd.org> in March 2005. +.\" Public domain. +.Dd March 29, 2005 +.Dt MOUNT_UDF 8 +.Os +.Sh NAME +.Nm mount_udf +.Nd mount an UDF filesystem +.Sh SYNOPSIS +.Nm mount_udf +.Ar special node +.Sh DESCRIPTION +The +.Nm +command attaches an UDF filesystem residing on the device +.Ar special +to the global filesystem namespace at the location indicated by +.Ar node . +.Sh SEE ALSO +.Xr mount 2 , +.Xr fstab 5 , +.Xr mount 8 , +.Xr umount 8 +.Sh HISTORY +The +.Nm +utility first appeared in +.Ox 3.8 . |