summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-04-08 21:40:31 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-04-08 21:40:31 +0000
commit4b8f0c731225a3cdcf34b9db773685c4d97be267 (patch)
tree6f5c46e14f3870e5ed5aa01f405aaab5c2b5f288 /share
parentef959076b13d78714791d8f21fce07808b49e6fc (diff)
Harmonize MAKEDEV.8 manpages, and provide one for arches still lacking it.
Remove bogus/obsolete information in the way (hello, hp300 MAKEDEV.8!) This has been lying for a long time in my tree, but much more work will be needed until these pages are complete - watch out for more m4 madness to generate them in the future.
Diffstat (limited to 'share')
-rw-r--r--share/man/man8/man8.alpha/MAKEDEV.8128
-rw-r--r--share/man/man8/man8.alpha/Makefile7
-rw-r--r--share/man/man8/man8.amiga/MAKEDEV.832
-rw-r--r--share/man/man8/man8.hp300/MAKEDEV.845
-rw-r--r--share/man/man8/man8.i386/MAKEDEV.843
-rw-r--r--share/man/man8/man8.mac68k/MAKEDEV.836
-rw-r--r--share/man/man8/man8.macppc/MAKEDEV.832
-rw-r--r--share/man/man8/man8.mvme68k/MAKEDEV.8118
-rw-r--r--share/man/man8/man8.mvme68k/Makefile5
-rw-r--r--share/man/man8/man8.sparc/MAKEDEV.832
-rw-r--r--share/man/man8/man8.sparc64/MAKEDEV.830
-rw-r--r--share/man/man8/man8.sun3/MAKEDEV.832
-rw-r--r--share/man/man8/man8.vax/MAKEDEV.847
13 files changed, 424 insertions, 163 deletions
diff --git a/share/man/man8/man8.alpha/MAKEDEV.8 b/share/man/man8/man8.alpha/MAKEDEV.8
new file mode 100644
index 00000000000..4252c4f5105
--- /dev/null
+++ b/share/man/man8/man8.alpha/MAKEDEV.8
@@ -0,0 +1,128 @@
+.\" $OpenBSD: MAKEDEV.8,v 1.1 2002/04/08 21:40:25 miod Exp $
+.\"
+.\" Copyright (c) 2001 Miodrag Vallat.
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\" notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\" notice, this list of conditions and the following disclaimer in the
+.\" documentation and/or other materials provided with the distribution.
+.\" 3. The name of the author may not be used to endorse or promote products
+.\" derived from this software without specific prior written permission.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+.\"
+.\"
+.Dd October 7, 2001
+.Dt MAKEDEV 8 alpha
+.Os
+.Sh NAME
+.Nm MAKEDEV
+.Nd create system and device special files
+.Sh SYNOPSIS
+.Nm MAKEDEV
+.Ar name
+.Op Ar ...
+.Sh DESCRIPTION
+The shell script
+.Nm MAKEDEV ,
+found in the
+.Pa /dev
+directory, is used to create the common special files.
+See
+.Xr intro 4
+for a more complete discussion of special files.
+.Pp
+.Nm MAKEDEV
+takes any number of device names as arguments, where the names are
+the common abbreviation for the device.
+There are three special device names,
+.Ar all ,
+.Ar std
+and
+.Ar local .
+If
+given,
+.Ar all
+creates device files for all devices on the alpha.
+If units are expected for a device,
+.Nm MAKEDEV
+will supply the standard numbers.
+The
+.Ar std
+argument creates only the standard devices for the alpha.
+Finally
+.Ar local
+is for devices specific to the local site, and executes the shell file
+.Pa MAKEDEV.local .
+.Pp
+The alpha supports the following devices.
+Where a device name is followed by a hash sign ("#"), the hash sign
+must be replaced by a unit number.
+.Pp
+.Sy Pseudo\-names
+.Bl -tag -width indent -compact
+.It Ar all
+All known devices for the alpha.
+.It Ar std
+The standard devices (console, drum, klog, kmem, ksyms, mem, null, stderr,
+stdin, stdout, tty, zero).
+.It Ar local
+Configuration specific devices.
+.It Ar wscons
+All wscons-related devices.
+.El
+.Pp
+.Sy Device\-names
+.Bl -tag -width indent -compact
+.It Ar bpf#
+Berkeley packet filters
+.It Ar cd#
+SCSI CD-ROM drives
+.It Ar iop#
+I2O devices.
+.It Ar kbd
+The keyboard
+.It Ar lkm
+Loadable kernel modules.
+.It Ar mouse#
+Mouse ports
+.It Ar pty#
+Set of 16 master and slave pseudo terminals
+.It Ar sd#
+SCSI disk drives
+.It Ar st#
+SCSI tape drives
+.It Ar tty#
+Onboard Serial ports
+.It Ar vnd#
+"File" pseudo-disks
+.It Ar wskbd
+Keyboard devices for wscons.
+.It Ar wsmouse
+Mouse devices for wscons.
+.It Ar wsmux
+Multiplexor devices for wscons.
+.El
+.Sh FILES
+.Bl -tag -width /dev -compact
+.It Pa /dev
+The special file directory.
+.El
+.Sh SEE ALSO
+.Xr intro 4 ,
+.Xr config 8 ,
+.Xr mknod 8
diff --git a/share/man/man8/man8.alpha/Makefile b/share/man/man8/man8.alpha/Makefile
index 1562d27a3f7..bc4d09f4683 100644
--- a/share/man/man8/man8.alpha/Makefile
+++ b/share/man/man8/man8.alpha/Makefile
@@ -1,9 +1,8 @@
-# $OpenBSD: Makefile,v 1.3 2001/06/21 08:10:14 mpech Exp $
+# $OpenBSD: Makefile,v 1.4 2002/04/08 21:40:25 miod Exp $
# $NetBSD: Makefile,v 1.3 1995/09/06 21:36:38 jtc Exp $
-MAN= boot_alpha.8
-#MAN= MAKEDEV.8 boot_alpha.8
-#MLINKS= MAKEDEV.8 makedev.8
+MAN= MAKEDEV.8 boot_alpha.8
+MLINKS= MAKEDEV.8 makedev.8
MANSUBDIR=alpha
.include <bsd.prog.mk>
diff --git a/share/man/man8/man8.amiga/MAKEDEV.8 b/share/man/man8/man8.amiga/MAKEDEV.8
index d5cc4fcbdf8..e9fbe379e32 100644
--- a/share/man/man8/man8.amiga/MAKEDEV.8
+++ b/share/man/man8/man8.amiga/MAKEDEV.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: MAKEDEV.8,v 1.7 2002/01/12 15:58:22 jason Exp $
+.\" $OpenBSD: MAKEDEV.8,v 1.8 2002/04/08 21:40:29 miod Exp $
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -47,17 +47,15 @@ The shell script
.Nm MAKEDEV ,
found in the
.Pa /dev
-directory, is used to create
-the common special
-files.
+directory, is used to create the common special files.
See
.Xr intro 4
for a more complete discussion of special files.
.Pp
.Nm MAKEDEV
-takes any number of device names as arguments,
-where the names are the common abbreviation for
-the device. There are three special device names,
+takes any number of device names as arguments, where the names are
+the common abbreviation for the device.
+There are three special device names,
.Ar all ,
.Ar std
and
@@ -65,31 +63,29 @@ and
If
given,
.Ar all
-creates device files for all devices on
-the Amiga. If units are expected for a device
+creates device files for all devices on the Amiga.
+If units are expected for a device,
.Nm MAKEDEV
-supplies the standard numbers.
+will supply the standard numbers.
The
.Ar std
-argument creates the standard devices for the Amiga.
+argument creates only the standard devices for the Amiga.
Finally
.Ar local
-is for devices specific to the local site, and
-executes the shell file
+is for devices specific to the local site, and executes the shell file
.Pa MAKEDEV.local .
.Pp
The Amiga supports the following devices.
-Where a device name is followed by a hash
-sign ("#"), the hash sign must be replaced
-by a unit number.
+Where a device name is followed by a hash sign ("#"), the hash sign
+must be replaced by a unit number.
.Pp
.Sy Pseudo\-names
.Bl -tag -width indent -compact
.It Ar all
All known devices for the Amiga.
.It Ar std
-The standard devices (console, drum, fd/*, klog, kmem, mem, null,
-stderr, stdin, stdout, tty, zero)
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
.It Ar local
Configuration specific devices
.El
diff --git a/share/man/man8/man8.hp300/MAKEDEV.8 b/share/man/man8/man8.hp300/MAKEDEV.8
index 97ba2bb7ed1..820ef175f12 100644
--- a/share/man/man8/man8.hp300/MAKEDEV.8
+++ b/share/man/man8/man8.hp300/MAKEDEV.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: MAKEDEV.8,v 1.10 2002/01/12 15:58:22 jason Exp $
+.\" $OpenBSD: MAKEDEV.8,v 1.11 2002/04/08 21:40:29 miod Exp $
.\"
.\" Copyright (c) 1997, Jason Downs. All rights reserved.
.\"
@@ -72,7 +72,7 @@
.Sh SYNOPSIS
.Nm MAKEDEV
.Ar name
-.Ar ...
+.Op Ar ...
.Sh DESCRIPTION
The shell script
.Nm MAKEDEV ,
@@ -86,25 +86,43 @@ for a more complete discussion of special files.
.Nm MAKEDEV
takes any number of device names as arguments, where the names are
the common abbreviation for the device.
-There are two special devices,
+There are three special device names,
+.Ar all ,
.Ar std
and
.Ar local .
-The former creates the standard devices for the architecture.
-The latter is for devices specific to the local site, and
-executes the shell file
+If
+given,
+.Ar all
+creates device files for all devices on the hp300.
+If units are expected for a device,
+.Nm MAKEDEV
+will supply the standard numbers.
+The
+.Ar std
+argument creates only the standard devices for the hp300.
+Finally
+.Ar local
+is for devices specific to the local site, and executes the shell file
.Pa MAKEDEV.local .
.Pp
-The HP300 supports the following devices.
-Where a device name is followed by a hash sign (``#''), the hash sign
+The hp300 supports the following devices.
+Where a device name is followed by a hash sign ("#"), the hash sign
must be replaced by a unit number.
.Pp
-.Bl -tag -width XXXXXXXXXX
+.Sy Pseudo\-names
+.Bl -tag -width indent -compact
+.It Ar all
+All known devices for the hp300.
.It Ar std
-the standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
-stdin, stdout, tty)
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
.It Ar local
-configuration specific devices
+Configuration specific devices
+.El
+.Pp
+.Sy Device\-names
+.Bl -tag -width indent -compact
.It Ar ct#
HP300 HP-IB cartridge tape
.It Ar ccd#
@@ -132,8 +150,6 @@ HP200/300 4 port serial mux interface
HP400 3 port/keyboard Apollo mux interface
.It Ar pty#
set of 16 master and slave pseudo terminals
-.It Ar flog#
-kernel logging device
.It Ar grf#
raw interface to HP300 graphics devices
.It Ar ite#
@@ -157,7 +173,6 @@ in-kernel random number generator
.It Pa /dev
The special file directory.
.El
-.Pp
.Sh SEE ALSO
.Xr intro 4 ,
.Xr config 8 ,
diff --git a/share/man/man8/man8.i386/MAKEDEV.8 b/share/man/man8/man8.i386/MAKEDEV.8
index dca559b20a1..b80bd0a3bf0 100644
--- a/share/man/man8/man8.i386/MAKEDEV.8
+++ b/share/man/man8/man8.i386/MAKEDEV.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: MAKEDEV.8,v 1.17 2002/01/12 15:58:23 jason Exp $
+.\" $OpenBSD: MAKEDEV.8,v 1.18 2002/04/08 21:40:29 miod Exp $
.\"
.\" Copyright (c) 1997, Jason Downs. All rights reserved.
.\"
@@ -72,7 +72,7 @@
.Sh SYNOPSIS
.Nm MAKEDEV
.Ar name
-.Ar ...
+.Op Ar ...
.Sh DESCRIPTION
The shell script
.Nm MAKEDEV ,
@@ -86,25 +86,43 @@ for a more complete discussion of special files.
.Nm MAKEDEV
takes any number of device names as arguments, where the names are
the common abbreviation for the device.
-There are two special devices,
+There are three special device names,
+.Ar all ,
.Ar std
and
.Ar local .
-The former creates the standard devices for the architecture.
-The latter is for devices specific to the local site, and
-executes the shell file
+If
+given,
+.Ar all
+creates device files for all devices on the i386.
+If units are expected for a device,
+.Nm MAKEDEV
+will supply the standard numbers.
+The
+.Ar std
+argument creates only the standard devices for the i386.
+Finally
+.Ar local
+is for devices specific to the local site, and executes the shell file
.Pa MAKEDEV.local .
.Pp
The i386 supports the following devices.
-Where a device name is followed by a hash sign (``#''), the hash sign
+Where a device name is followed by a hash sign ("#"), the hash sign
must be replaced by a unit number.
.Pp
-.Bl -tag -width XXXXXXXXXX
+.Sy Pseudo\-names
+.Bl -tag -width indent -compact
+.It Ar all
+All known devices for the i386.
.It Ar std
-the standard devices (console, drum, fd/*, klog, kmem, mem, null,
-stderr, stdin, stdout, tty)
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
.It Ar local
-configuration specific devices
+Configuration specific devices
+.El
+.Pp
+.Sy Device\-names
+.Bl -tag -width indent -compact
.It Ar ttyC0
pccons console or pcvt screen 0
.It Ar ttyC#
@@ -175,9 +193,8 @@ Brooktree 848 driver
.It Ar wdt#
watchdog timer
.El
-.Pp
.Sh FILES
-.Bl -tag -width XXXX -compact
+.Bl -tag -width /dev -compact
.It Pa /dev
The special file directory.
.El
diff --git a/share/man/man8/man8.mac68k/MAKEDEV.8 b/share/man/man8/man8.mac68k/MAKEDEV.8
index 7c03b67e9cf..7a216921151 100644
--- a/share/man/man8/man8.mac68k/MAKEDEV.8
+++ b/share/man/man8/man8.mac68k/MAKEDEV.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: MAKEDEV.8,v 1.2 2002/01/12 15:58:23 jason Exp $
+.\" $OpenBSD: MAKEDEV.8,v 1.3 2002/04/08 21:40:29 miod Exp $
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -47,17 +47,15 @@ The shell script
.Nm MAKEDEV ,
found in the
.Pa /dev
-directory, is used to create
-the common special
-files.
+directory, is used to create the common special files.
See
.Xr intro 4
for a more complete discussion of special files.
.Pp
.Nm MAKEDEV
-takes any number of device names as arguments,
-where the names are the common abbreviation for
-the device. There are three special device names,
+takes any number of device names as arguments, where the names are
+the common abbreviation for the device.
+There are three special device names,
.Ar all ,
.Ar std
and
@@ -65,31 +63,29 @@ and
If
given,
.Ar all
-creates device files for all devices on
-the Mac68k. If units are expected for a device
+creates device files for all devices on the mac68k.
+If units are expected for a device,
.Nm MAKEDEV
-supplies the standard numbers.
+will supply the standard numbers.
The
.Ar std
-argument creates the standard devices for the Mac68k.
+argument creates only the standard devices for the mac68k.
Finally
.Ar local
-is for devices specific to the local site, and
-executes the shell file
+is for devices specific to the local site, and executes the shell file
.Pa MAKEDEV.local .
.Pp
-The Mac68k supports the following devices.
-Where a device name is followed by a hash
-sign ("#"), the hash sign must be replaced
-by a unit number.
+The mac68k supports the following devices.
+Where a device name is followed by a hash sign ("#"), the hash sign
+must be replaced by a unit number.
.Pp
.Sy Pseudo\-names
.Bl -tag -width indent -compact
.It Ar all
-All known devices for the Mac68k.
+All known devices for the mac68k.
.It Ar std
-The standard devices (console, drum, fd/*, klog, kmem, mem, null,
-stderr, stdin, stdout, tty, zero)
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
.It Ar local
Configuration specific devices
.El
diff --git a/share/man/man8/man8.macppc/MAKEDEV.8 b/share/man/man8/man8.macppc/MAKEDEV.8
index a5acbf56798..311db084386 100644
--- a/share/man/man8/man8.macppc/MAKEDEV.8
+++ b/share/man/man8/man8.macppc/MAKEDEV.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: MAKEDEV.8,v 1.3 2002/01/12 15:58:23 jason Exp $
+.\" $OpenBSD: MAKEDEV.8,v 1.4 2002/04/08 21:40:29 miod Exp $
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -47,17 +47,15 @@ The shell script
.Nm MAKEDEV ,
found in the
.Pa /dev
-directory, is used to create
-the common special
-files.
+directory, is used to create the common special files.
See
.Xr intro 4
for a more complete discussion of special files.
.Pp
.Nm MAKEDEV
-takes any number of device names as arguments,
-where the names are the common abbreviation for
-the device. There are three special device names,
+takes any number of device names as arguments, where the names are
+the common abbreviation for the device.
+There are three special device names,
.Ar all ,
.Ar std
and
@@ -65,31 +63,29 @@ and
If
given,
.Ar all
-creates device files for all devices on
-macppc. If units are expected for a device
+creates device files for all devices on macppc.
+If units are expected for a device,
.Nm MAKEDEV
-supplies the standard numbers.
+will supply the standard numbers.
The
.Ar std
-argument creates the standard devices for macppc.
+argument creates only the standard devices for macppc.
Finally
.Ar local
-is for devices specific to the local site, and
-executes the shell file
+is for devices specific to the local site, and executes the shell file
.Pa MAKEDEV.local .
.Pp
macppc supports the following devices.
-Where a device name is followed by a hash
-sign ("#"), the hash sign must be replaced
-by a unit number.
+Where a device name is followed by a hash sign ("#"), the hash sign
+must be replaced by a unit number.
.Pp
.Sy Pseudo\-names
.Bl -tag -width indent -compact
.It Ar all
All known devices for macppc.
.It Ar std
-The standard devices (console, drum, fd/*, klog, kmem, mem, null,
-stderr, stdin, stdout, tty, zero)
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
.It Ar local
Configuration specific devices
.El
diff --git a/share/man/man8/man8.mvme68k/MAKEDEV.8 b/share/man/man8/man8.mvme68k/MAKEDEV.8
new file mode 100644
index 00000000000..69c4b50c033
--- /dev/null
+++ b/share/man/man8/man8.mvme68k/MAKEDEV.8
@@ -0,0 +1,118 @@
+.\" $OpenBSD: MAKEDEV.8,v 1.1 2002/04/08 21:40:30 miod Exp $
+.\"
+.\" Copyright (c) 2001 Miodrag Vallat.
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\" notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\" notice, this list of conditions and the following disclaimer in the
+.\" documentation and/or other materials provided with the distribution.
+.\" 3. The name of the author may not be used to endorse or promote products
+.\" derived from this software without specific prior written permission.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+.\"
+.\"
+.Dd October 7, 2001
+.Dt MAKEDEV 8 mvme68k
+.Os
+.Sh NAME
+.Nm MAKEDEV
+.Nd create system and device special files
+.Sh SYNOPSIS
+.Nm MAKEDEV
+.Ar name
+.Op Ar ...
+.Sh DESCRIPTION
+The shell script
+.Nm MAKEDEV ,
+found in the
+.Pa /dev
+directory, is used to create the common special files.
+See
+.Xr intro 4
+for a more complete discussion of special files.
+.Pp
+.Nm MAKEDEV
+takes any number of device names as arguments, where the names are
+the common abbreviation for the device.
+There are three special device names,
+.Ar all ,
+.Ar std
+and
+.Ar local .
+If
+given,
+.Ar all
+creates device files for all devices on the mvme68k.
+If units are expected for a device,
+.Nm MAKEDEV
+will supply the standard numbers.
+The
+.Ar std
+argument creates only the standard devices for the mvme68k.
+Finally
+.Ar local
+is for devices specific to the local site, and executes the shell file
+.Pa MAKEDEV.local .
+.Pp
+The mvme68k supports the following devices.
+Where a device name is followed by a hash sign ("#"), the hash sign
+must be replaced by a unit number.
+.Pp
+.Sy Pseudo\-names
+.Bl -tag -width indent -compact
+.It Ar all
+All known devices for the mvme68k.
+.It Ar std
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
+.It Ar local
+Configuration specific devices
+.El
+.Pp
+.Sy Device\-names
+.Bl -tag -width indent -compact
+.It Ar bpf#
+Berkeley packet filters
+.It Ar cd#
+SCSI CD-ROM drives
+.It Ar kbd
+The keyboard
+.It Ar lkm
+Loadable kernel modules.
+.It Ar mouse#
+Mouse ports
+.It Ar pty#
+Set of 16 master and slave pseudo terminals
+.It Ar sd#
+SCSI disk drives
+.It Ar st#
+SCSI tape drives
+.It Ar tty#
+Onboard Serial ports
+.It Ar vnd#
+"File" pseudo-disks
+.El
+.Sh FILES
+.Bl -tag -width /dev -compact
+.It Pa /dev
+The special file directory.
+.El
+.Sh SEE ALSO
+.Xr intro 4 ,
+.Xr config 8 ,
+.Xr mknod 8
diff --git a/share/man/man8/man8.mvme68k/Makefile b/share/man/man8/man8.mvme68k/Makefile
index 794a087ac11..99b1dec4b5f 100644
--- a/share/man/man8/man8.mvme68k/Makefile
+++ b/share/man/man8/man8.mvme68k/Makefile
@@ -1,8 +1,9 @@
-# $OpenBSD: Makefile,v 1.4 2001/06/21 08:10:16 mpech Exp $
+# $OpenBSD: Makefile,v 1.5 2002/04/08 21:40:30 miod Exp $
# $NetBSD: Makefile,v 1.3 1995/09/06 21:36:38 jtc Exp $
+MAN= MAKEDEV.8
#MAN= MAKEDEV.8 boot_mvme68k.8
-#MLINKS= MAKEDEV.8 makedev.8
+MLINKS= MAKEDEV.8 makedev.8
MANSUBDIR=mvme68k
.include <bsd.prog.mk>
diff --git a/share/man/man8/man8.sparc/MAKEDEV.8 b/share/man/man8/man8.sparc/MAKEDEV.8
index 96677b9f992..0132d2087d1 100644
--- a/share/man/man8/man8.sparc/MAKEDEV.8
+++ b/share/man/man8/man8.sparc/MAKEDEV.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: MAKEDEV.8,v 1.10 2002/01/12 15:58:23 jason Exp $
+.\" $OpenBSD: MAKEDEV.8,v 1.11 2002/04/08 21:40:30 miod Exp $
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -55,9 +55,9 @@ See
for a more complete discussion of special files.
.Pp
.Nm MAKEDEV
-takes any number of device names as arguments,
-where the names are the common abbreviation for
-the device. There are three special device names,
+takes any number of device names as arguments, where the names are
+the common abbreviation for the device.
+There are three special device names,
.Ar all ,
.Ar std
and
@@ -65,31 +65,29 @@ and
If
given,
.Ar all
-creates device files for all devices on
-Sparc. If units are expected for a device
+creates device files for all devices on sparc.
+If units are expected for a device,
.Nm MAKEDEV
-supplies the standard numbers.
+will supply the standard numbers.
The
.Ar std
-argument creates the standard devices for Sparc.
+argument creates only the standard devices for sparc.
Finally
.Ar local
-is for devices specific to the local site, and
-executes the shell file
+is for devices specific to the local site, and executes the shell file
.Pa MAKEDEV.local .
.Pp
-Sparc supports the following devices.
-Where a device name is followed by a hash
-sign ("#"), the hash sign must be replaced
-by a unit number.
+The sparc supports the following devices.
+Where a device name is followed by a hash sign ("#"), the hash sign
+must be replaced by a unit number.
.Pp
.Sy Pseudo\-names
.Bl -tag -width indent -compact
.It Ar all
-All known devices for Sparc.
+All known devices for sparc.
.It Ar std
-The standard devices (console, drum, fd/*, klog, kmem, mem, null,
-stderr, stdin, stdout, tty, zero)
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
.It Ar local
Configuration specific devices
.El
diff --git a/share/man/man8/man8.sparc64/MAKEDEV.8 b/share/man/man8/man8.sparc64/MAKEDEV.8
index 6ac85ce417d..53d27689781 100644
--- a/share/man/man8/man8.sparc64/MAKEDEV.8
+++ b/share/man/man8/man8.sparc64/MAKEDEV.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: MAKEDEV.8,v 1.2 2002/01/12 15:58:23 jason Exp $
+.\" $OpenBSD: MAKEDEV.8,v 1.3 2002/04/08 21:40:30 miod Exp $
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -55,9 +55,9 @@ See
for a more complete discussion of special files.
.Pp
.Nm MAKEDEV
-takes any number of device names as arguments,
-where the names are the common abbreviation for
-the device. There are three special device names,
+takes any number of device names as arguments, where the names are
+the common abbreviation for the device.
+There are three special device names,
.Ar all ,
.Ar std
and
@@ -65,31 +65,29 @@ and
If
given,
.Ar all
-creates device files for all devices on
-sparc64. If units are expected for a device
+creates device files for all devices on sparc64.
+If units are expected for a device,
.Nm MAKEDEV
-supplies the standard numbers.
+will supply the standard numbers.
The
.Ar std
-argument creates the standard devices for sparc64.
+argument creates only the standard devices for sparc64.
Finally
.Ar local
-is for devices specific to the local site, and
-executes the shell file
+is for devices specific to the local site, and executes the shell file
.Pa MAKEDEV.local .
.Pp
-sparc64 supports the following devices.
-Where a device name is followed by a hash
-sign ("#"), the hash sign must be replaced
-by a unit number.
+The sparc64 supports the following devices.
+Where a device name is followed by a hash sign ("#"), the hash sign
+must be replaced by a unit number.
.Pp
.Sy Pseudo\-names
.Bl -tag -width indent -compact
.It Ar all
All known devices for sparc64.
.It Ar std
-The standard devices (console, drum, fd/*, klog, kmem, mem, null,
-stderr, stdin, stdout, tty, zero)
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
.It Ar local
Configuration specific devices
.El
diff --git a/share/man/man8/man8.sun3/MAKEDEV.8 b/share/man/man8/man8.sun3/MAKEDEV.8
index 875998ce1d9..b94db481eea 100644
--- a/share/man/man8/man8.sun3/MAKEDEV.8
+++ b/share/man/man8/man8.sun3/MAKEDEV.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: MAKEDEV.8,v 1.7 2002/01/12 15:58:23 jason Exp $
+.\" $OpenBSD: MAKEDEV.8,v 1.8 2002/04/08 21:40:30 miod Exp $
.\" $NetBSD: MAKEDEV.8,v 1.1 1995/09/06 21:31:34 jtc Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
@@ -57,9 +57,9 @@ See
for a more complete discussion of special files.
.Pp
.Nm MAKEDEV
-takes any number of device names as arguments,
-where the names are the common abbreviation for
-the device. There are three special device names,
+takes any number of device names as arguments, where the names are
+the common abbreviation for the device.
+There are three special device names,
.Ar all ,
.Ar std
and
@@ -67,31 +67,29 @@ and
If
given,
.Ar all
-creates device files for all devices on
-the Sun3. If units are expected for a device
+creates device files for all devices on the sun3.
+If units are expected for a device,
.Nm MAKEDEV
-supplies the standard numbers.
+will supply the standard numbers.
The
.Ar std
-argument creates the standard devices for the Sun3.
+argument creates only the standard devices for the sun3.
Finally
.Ar local
-is for devices specific to the local site, and
-executes the shell file
+is for devices specific to the local site, and executes the shell file
.Pa MAKEDEV.local .
.Pp
-The Sun3 supports the following devices.
-Where a device name is followed by a hash
-sign ("#"), the hash sign must be replaced
-by a unit number.
+The sun3 supports the following devices.
+Where a device name is followed by a hash sign ("#"), the hash sign
+must be replaced by a unit number.
.Pp
.Sy Pseudo\-names
.Bl -tag -width indent -compact
.It Ar all
-All known devices for the Sun3.
+All known devices for the sun3.
.It Ar std
-The standard devices (console, drum, fd/*, klog, kmem, mem, null,
-stderr, stdin, stdout, tty, zero)
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
.It Ar local
Configuration specific devices
.El
diff --git a/share/man/man8/man8.vax/MAKEDEV.8 b/share/man/man8/man8.vax/MAKEDEV.8
index 52315047cfe..5d1c7ba5eae 100644
--- a/share/man/man8/man8.vax/MAKEDEV.8
+++ b/share/man/man8/man8.vax/MAKEDEV.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: MAKEDEV.8,v 1.8 2002/01/12 15:58:23 jason Exp $
+.\" $OpenBSD: MAKEDEV.8,v 1.9 2002/04/08 21:40:30 miod Exp $
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -41,14 +41,13 @@
.Sh SYNOPSIS
.Nm MAKEDEV
.Ar name
-.Ar ...
+.Op Ar ...
.Sh DESCRIPTION
The shell script
.Nm MAKEDEV ,
found in the
.Pa /dev
-directory, is used to create the common special
-files.
+directory, is used to create the common special files.
See
.Xr intro 4
for a more complete discussion of special files.
@@ -58,38 +57,41 @@ takes any number of device names as arguments, where the names are
the common abbreviation for the device.
There are three special device names,
.Ar all ,
-.Ar std ,
+.Ar std
and
.Ar local .
-.Ar All
-creates device files for all devices on the VAX. If units are expected for
-a device,
+If
+given,
+.Ar all
+creates device files for all devices on the vax.
+If units are expected for a device,
.Nm MAKEDEV
-supplies the standard numbers. The
+will supply the standard numbers.
+The
.Ar std
-argument creates the standard devices for the VAX. Finally, the
+argument creates only the standard devices for the vax.
+Finally
.Ar local
-argument is for devices specific to the local site, and executes the
-shell file
+is for devices specific to the local site, and executes the shell file
.Pa MAKEDEV.local .
.Pp
-The VAX supports the following devices.
-Where a device name is followed by a hash sign (``#''), the hash sign
+The vax supports the following devices.
+Where a device name is followed by a hash sign ("#"), the hash sign
must be replaced by a unit number.
.Pp
.Sy Pseudo\-names
-.Bl -tag -width indent
+.Bl -tag -width indent -compact
.It Ar all
-All known devices for the VAX.
+All known devices for the vax.
.It Ar std
-The standard devices (console, crl, csa1, csa2, drum, fd/*, floppy,
-kUmem, klog, kmem, mem, null, stderr, stdin, stdout, tty, tu0, tu1, zero)
+The standard devices (console, drum, fd/*, klog, kmem, mem, null, stderr,
+stdin, stdout, tty, zero)
.It Ar local
-Configuration\-specific devices
+Configuration specific devices
.El
.Pp
-.Sy Device names
-.Bl -tag -width indent
+.Sy Device\-names
+.Bl -tag -width indent -compact
.It Ar ad#
Unibus interface to data translation a/d converter
.It Ar bpf#
@@ -173,9 +175,8 @@ Unibus Varian parallel interface
.It Ar vp#
Unibus Versatec parallel interface
.El
-.Pp
.Sh FILES
-.Bl -tag -width XXXX -compact
+.Bl -tag -width /dev -compact
.It Pa /dev
The special file directory.
.El