Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Add MAKEDEV(8) for acorn32 and necessary directories.



details:   https://anonhg.NetBSD.org/src/rev/ae46a5a6cca0
branches:  trunk
changeset: 518622:ae46a5a6cca0
user:      wiz <wiz%NetBSD.org@localhost>
date:      Sun Dec 02 18:56:47 2001 +0000

description:
Add MAKEDEV(8) for acorn32 and necessary directories.

diffstat:

 distrib/sets/lists/base/mi            |    4 +-
 distrib/sets/lists/man/mi             |    6 +-
 etc/mtree/NetBSD.dist                 |    4 +-
 share/man/man8/Makefile               |   16 +-
 share/man/man8/man8.acorn32/MAKEDEV.8 |  283 ++++++++++++++++++++++++++++++++++
 share/man/man8/man8.acorn32/Makefile  |    7 +
 6 files changed, 309 insertions(+), 11 deletions(-)

diffs (truncated from 405 to 300 lines):

diff -r cbc22eec3d8f -r ae46a5a6cca0 distrib/sets/lists/base/mi
--- a/distrib/sets/lists/base/mi        Sun Dec 02 18:50:04 2001 +0000
+++ b/distrib/sets/lists/base/mi        Sun Dec 02 18:56:47 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.289 2001/11/30 13:33:27 kleink Exp $
+# $NetBSD: mi,v 1.290 2001/12/02 18:56:47 wiz Exp $
 .                      base-sys-root
 ./altroot              base-sys-root
 ./bin                  base-sys-root
@@ -1145,6 +1145,7 @@
 ./usr/share/man/cat6                   base-man-share
 ./usr/share/man/cat7                   base-man-share
 ./usr/share/man/cat8                   base-man-share
+./usr/share/man/cat8/acorn32           base-man-share
 ./usr/share/man/cat8/alpha             base-man-share
 ./usr/share/man/cat8/amiga             base-man-share
 ./usr/share/man/cat8/arc               base-man-share
@@ -1225,6 +1226,7 @@
 ./usr/share/man/man6           base-man-share
 ./usr/share/man/man7           base-man-share
 ./usr/share/man/man8           base-man-share
+./usr/share/man/man8/acorn32           base-man-share
 ./usr/share/man/man8/alpha             base-man-share
 ./usr/share/man/man8/amiga             base-man-share
 ./usr/share/man/man8/arc               base-man-share
diff -r cbc22eec3d8f -r ae46a5a6cca0 distrib/sets/lists/man/mi
--- a/distrib/sets/lists/man/mi Sun Dec 02 18:50:04 2001 +0000
+++ b/distrib/sets/lists/man/mi Sun Dec 02 18:56:47 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.423 2001/11/19 09:46:09 martin Exp $
+# $NetBSD: mi,v 1.424 2001/12/02 18:56:48 wiz Exp $
 ./usr/share/info/am-utils.info                 man-amd-info
 ./usr/share/info/as.info                       man-computil-info
 ./usr/share/info/awk.info                      man-util-info
@@ -1175,6 +1175,8 @@
 ./usr/share/man/cat8/ac.0                      man-sysutil-catman
 ./usr/share/man/cat8/accton.0                  man-sysutil-catman
 ./usr/share/man/cat8/adduser.0                 man-sysutil-catman
+./usr/share/man/cat8/acorn32/MAKEDEV.0         man-sysutil-catman
+./usr/share/man/cat8/acorn32/makedev.0         man-sysutil-catman
 ./usr/share/man/cat8/alpha/MAKEDEV.0           man-sysutil-catman
 ./usr/share/man/cat8/alpha/boot.0              man-sys-catman
 ./usr/share/man/cat8/alpha/installboot.0       man-sysutil-catman
@@ -2819,6 +2821,8 @@
 ./usr/share/man/man8/ac.8                      man-sysutil-man
 ./usr/share/man/man8/accton.8                  man-sysutil-man
 ./usr/share/man/man8/adduser.8                 man-sysutil-man
+./usr/share/man/man8/acorn32/MAKEDEV.8         man-sysutil-man
+./usr/share/man/man8/acorn32/makedev.8         man-sysutil-man
 ./usr/share/man/man8/alpha/MAKEDEV.8           man-sysutil-man
 ./usr/share/man/man8/alpha/boot.8              man-sys-man
 ./usr/share/man/man8/alpha/installboot.8       man-sysutil-man
diff -r cbc22eec3d8f -r ae46a5a6cca0 etc/mtree/NetBSD.dist
--- a/etc/mtree/NetBSD.dist     Sun Dec 02 18:50:04 2001 +0000
+++ b/etc/mtree/NetBSD.dist     Sun Dec 02 18:56:47 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: NetBSD.dist,v 1.172 2001/11/10 22:56:18 wiz Exp $
+#      $NetBSD: NetBSD.dist,v 1.173 2001/12/02 18:56:47 wiz Exp $
 #      @(#)4.4BSD.dist 8.1 (Berkeley) 6/13/93
 
 /set type=dir uname=root gname=wheel mode=0755
@@ -416,6 +416,7 @@
 ./usr/share/man/cat6
 ./usr/share/man/cat7
 ./usr/share/man/cat8
+./usr/share/man/cat8/acorn32
 ./usr/share/man/cat8/alpha
 ./usr/share/man/cat8/amiga
 ./usr/share/man/cat8/arc
@@ -495,6 +496,7 @@
 ./usr/share/man/man6
 ./usr/share/man/man7
 ./usr/share/man/man8
+./usr/share/man/man8/acorn32
 ./usr/share/man/man8/alpha
 ./usr/share/man/man8/amiga
 ./usr/share/man/man8/arc
diff -r cbc22eec3d8f -r ae46a5a6cca0 share/man/man8/Makefile
--- a/share/man/man8/Makefile   Sun Dec 02 18:50:04 2001 +0000
+++ b/share/man/man8/Makefile   Sun Dec 02 18:56:47 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.50 2001/11/10 22:57:57 wiz Exp $
+#      $NetBSD: Makefile,v 1.51 2001/12/02 18:56:48 wiz Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/5/93
 
 MAN=   compat_freebsd.8 compat_ibcs2.8 compat_linux.8 compat_netbsd32.8 \
@@ -14,13 +14,13 @@
 MLINKS+=yp.8 nis.8
 MLINKS+=rc.8 rc.d.8
 MLINKS+=rc.8 rc.shutdown.8
-SUBDIR=        man8.alpha man8.amiga man8.arc man8.arm26 man8.arm32 man8.atari \
-       man8.bebox man8.cobalt man8.dreamcast man8.evbarm man8.hp300 \
-       man8.hpcmips man8.hpcsh man8.i386 man8.luna68k man8.mac68k man8.macppc \
-       man8.mipsco man8.mmeye man8.mvme68k man8.netwinder man8.news68k \
-       man8.newsmips man8.next68k man8.pc532 man8.pmax man8.prep \
-       man8.sandpoint man8.sgimips man8.sparc man8.sparc64 man8.sun2 \
-       man8.sun3 man8.vax man8.walnut man8.x68k
+SUBDIR=        man8.acorn32 man8.alpha man8.amiga man8.arc man8.arm26 man8.arm32 \
+       man8.atari man8.bebox man8.cobalt man8.dreamcast man8.evbarm \
+       man8.hp300 man8.hpcmips man8.hpcsh man8.i386 man8.luna68k man8.mac68k \
+       man8.macppc man8.mipsco man8.mmeye man8.mvme68k man8.netwinder \
+       man8.news68k man8.newsmips man8.next68k man8.pc532 man8.pmax \
+       man8.prep man8.sandpoint man8.sgimips man8.sparc man8.sparc64 \
+       man8.sun2 man8.sun3 man8.vax man8.walnut man8.x68k
 
 .include <bsd.man.mk>
 .include <bsd.subdir.mk>
diff -r cbc22eec3d8f -r ae46a5a6cca0 share/man/man8/man8.acorn32/MAKEDEV.8
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/share/man/man8/man8.acorn32/MAKEDEV.8     Sun Dec 02 18:56:47 2001 +0000
@@ -0,0 +1,283 @@
+.\" *** ------------------------------------------------------------------
+.\" *** This file was generated automatically
+.\" *** from src/etc/etc.acorn32/MAKEDEV and
+.\" *** src/share/man/man8/MAKEDEV.8.template
+.\" ***
+.\" *** DO NOT EDIT - any changes will be lost!!!
+.\" *** ------------------------------------------------------------------
+.\"
+.\" $NetBSD: MAKEDEV.8,v 1.1 2001/12/02 18:56:49 wiz Exp $
+.\"
+.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
+.\" All rights reserved.
+.\"
+.\" This code is derived from software contributed to The NetBSD Foundation
+.\" by Thomas Klausner.
+.\"
+.\" 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. All advertising materials mentioning features or use of this software
+.\"    must display the following acknowledgement:
+.\"        This product includes software developed by the NetBSD
+.\"        Foundation, Inc. and its contributors.
+.\" 4. Neither the name of The NetBSD Foundation nor the names of its
+.\"    contributors may be used to endorse or promote products derived
+.\"    from this software without specific prior written permission.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+.\" ``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 FOUNDATION OR CONTRIBUTORS
+.\" 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 December 2, 2001
+.Dt MAKEDEV 8 acorn32
+.Os
+.Sh NAME
+.Nm MAKEDEV
+.Nd create system and device special files
+.Sh SYNOPSIS
+.Nm
+.Ar special Op Ar ...
+
+.Nm
+.Ar device Op Ar ...
+.Sh DESCRIPTION
+.Nm
+is used to create system and device special files.
+As arguments it takes the names of known devices, like
+.Ar sd0 ,
+or of special targets, like
+.Pa all
+or
+.Pa std ,
+which create a collection of device special files.
+.Pp
+The script is in
+.Pa /dev/MAKEDEV
+and must be called from the
+.Pa /dev
+directory.
+.Pp
+The special targets supported on
+.Nx Ns / Ns acorn32
+are:
+.Pp
+.\" @@@SPECIAL@@@
+.Bl -tag -width 01234567 -compact
+.It Ar all
+Makes all known devices, including local devices. Tries to make the 'standard' number of each type.
+.It Ar floppy
+Devices to be put on install floppies
+.It Ar std
+Standard devices
+.It Ar local
+Configuration specific devices which are created by running the
+.Pa MAKEDEV.local
+shell script with the argument ``all''.
+.It Ar isdn
+Make ISDN devices
+.El
+.Pp
+Please note that any hash marks
+.Pq Dq #
+in the following list of supported device targets must be replaced by
+digits when calling
+.Nm "" :
+.Pp
+.\" @@@DEVICES@@@
+.Bl -tag -width 01
+.It Tapes :
+. Bl -tag -width 0123456789 -compact
+. It Ar st#
+SCSI tapes, see
+.Xr \&st 4
+. El
+.It Disks :
+. Bl -tag -width 0123456789 -compact
+. It Ar wd#
+``winchester'' disk drives (ST506,IDE,ESDI,RLL,...), see
+.Xr \&wd 4
+. It Ar fd#
+``floppy'' disk drives (3 1/2``, 5 1/4'')
+. It Ar sd#
+SCSI disks, see
+.Xr \&sd 4
+. It Ar cd#
+SCSI CD-ROM, see
+.Xr \&cd 4
+. It Ar vnd#
+``file'' pseudo-disks, see
+.Xr \&vnd 4
+. It Ar md#
+Memory pseudo-disk devices, see
+.Xr \&md 4
+. It Ar ccd#
+Contatenated disk devices, see
+.Xr \&ccd 4
+. It Ar raid#
+RAIDframe disk driver, see
+.Xr \&raid 4
+. El
+.It Console ports :
+. Bl -tag -width 0123456789 -compact
+. It Ar ttyv0
+Pccons console
+. It Ar ttyE#
+Wscons
+. El
+.It Pointing devices :
+. Bl -tag -width 0123456789 -compact
+. It Ar quadmouse#
+``quadrature mouse''
+. It Ar pms#
+``PS/2 mouse'', see
+.Xr \&pms 4
+. It Ar wsmouse#
+Wscons mouse events, see
+.Xr \&wsmouse 4
+. El
+.It Keyboard devices :
+. Bl -tag -width 0123456789 -compact
+. It Ar wskbd#
+Wscons keyboard events, see
+.Xr \&wskbd 4
+. El
+.It Terminal ports :
+. Bl -tag -width 0123456789 -compact
+. It Ar tty#
+Serial ports, see
+.Xr \&tty 4
+. It Ar fcom
+DC21285 COM port
+. El
+.It Pseudo terminals :
+. Bl -tag -width 0123456789 -compact
+. It Ar pty#
+Set of 16 master and slave pseudo terminals, see
+.Xr \&pty 4
+. El
+.It Printers :
+. Bl -tag -width 0123456789 -compact
+. It Ar lpt#
+Stock lp
+. It Ar lpa#
+Interruptless lp
+. El
+.It USB devices :
+. Bl -tag -width 0123456789 -compact
+. It Ar usb#
+Bus control devices used by usbd for attach/detach, see
+.Xr \&usb 4
+. It Ar uhid#
+Generic HID devices, see
+.Xr \&uhid 4
+. It Ar ulpt#
+Printer devices, see
+.Xr \&ulpt 4



Home | Main Index | Thread Index | Old Index