NetBSD/etc/etc.sun3/MAKEDEV

224 lines
5.1 KiB
Plaintext
Raw Normal View History

1994-07-13 01:11:18 +04:00
#!/bin/sh -
#
1996-10-09 04:40:33 +04:00
# $NetBSD: MAKEDEV,v 1.9 1996/10/09 00:40:35 jtc Exp $
1996-03-03 19:54:17 +03:00
#
1994-07-13 01:11:18 +04:00
# Copyright (c) 1990 The Regents of the University of California.
# 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. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by the University of
# California, Berkeley and its contributors.
# 4. Neither the name of the University 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 REGENTS 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 REGENTS 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.
#
# @(#)MAKEDEV 5.5 (Berkeley) 5/28/91
#
# Device "make" file. Valid arguments:
# std standard devices
# local configuration specific devices
# Tapes:
# st* ? tape
# Disks:
# sd* Sun SCSI disks
# fd* Floppies
# vnd* "file" pseudo-disks
1995-08-17 22:02:27 +04:00
# ccd* concatenated disk driver
1994-07-13 01:11:18 +04:00
# Pseudo terminals:
# pty* set of 16 master and slave pseudo terminals
# Printers:
# Call units:
# Special purpose devices:
# bwtwo*
1995-07-07 19:46:44 +04:00
# cgtwo*
# cgfour*
1994-07-13 01:11:18 +04:00
# bpf* packet filter
# lkm loadable kernel modules interface
# tun* network tunnel driver
1995-10-09 02:23:30 +03:00
# rd* RAM-disk
1994-07-13 01:11:18 +04:00
# XXX - Keep /usr/etc so SunOS can find chown
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/etc
umask 77
# set this to echo for Echo-Only debugging
eo=
# mk name b/c major minor [mode] [group]
mk() {
$eo mknod $1 $2 $3 $4
$eo chmod ${5-666} $1
test -n "$6" && $eo chgrp $6 $1
return 0
}
for arg
do
unit=`expr $arg : '[a-z][a-z]*\([0-9][0-9]*\)'`
[ "$unit" ] || unit=0
case $arg in
all)
1996-10-09 04:40:33 +04:00
sh MAKEDEV std fd pty0
sh MAKEDEV bwtwo0 cgtwo0 cgfour0
sh MAKEDEV sd0 sd1 sd2 sd3 sd4 sd5 sd6
sh MAKEDEV cd0 cd1 st0 st1 st2
sh MAKEDEV xd0 xd1 xd2 xd3
sh MAKEDEV xy0 xy1 xy2 xy3
sh MAKEDEV bpf0 bpf1 bpf2 bpf3
sh MAKEDEV tun0 tun1
sh MAKEDEV local
1994-07-13 01:11:18 +04:00
;;
std)
mk console c 0 0 622
mk kd c 1 0 622
mk tty c 2 0
mk mem c 3 0 640 kmem
mk kmem c 3 1 640 kmem
mk null c 3 2
mk eeprom c 3 11 640 kmem
mk zero c 3 12
mk drum c 7 0 640 kmem
mk ttya c 12 0
mk ttyb c 12 1
mk mouse c 13 0
mk klog c 16 0 600
mk fb c 22 0
mk kbd c 29 0
mk stdin c 23 0
mk stdout c 23 1
mk stderr c 23 2
1994-07-13 01:11:18 +04:00
;;
fd)
mkdir fd >/dev/null 2>&1
i=0 ; while [ $i != 64 ]
do
mk fd/$i c 23 $i
i=`expr $i + 1`
done
;;
bpf*)
mk bpf$unit c 36 $unit 600
;;
1995-07-07 19:46:44 +04:00
tun*)
mk tun$unit c 24 $unit 600
;;
1994-07-13 01:11:18 +04:00
pty*)
case $unit in
0) offset=0 name=p;;
1) offset=16 name=q;;
2) offset=32 name=r;;
3) offset=48 name=s;;
# Note that telnetd, rlogind, and xterm (at least) only look at p-s.
4) offset=64 name=t;;
*) echo bad unit for pty in: $arg;;
esac
for pair in 0.0 1.1 2.2 3.3 4.4 5.5 6.6 7.7 \
8.8 9.9 a.10 b.11 c.12 d.13 e.14 f.15
do
(
tmp="$IFS" ; IFS="$IFS."
set -- $pair
IFS="$tmp" ; unset tmp
minor=`expr $offset + $2`
mk tty$name$1 c 20 $minor
mk pty$name$1 c 21 $minor
)
done
;;
1996-10-09 04:40:33 +04:00
cd*|sd*|xd*|xy*|vnd*|ccd*)
1994-07-13 01:11:18 +04:00
case $arg in
1995-07-07 19:46:44 +04:00
cd*) name=cd; blk=18; chr=58;;
1995-01-27 02:28:11 +03:00
sd*) name=sd; blk=7; chr=17;;
1996-10-09 04:40:33 +04:00
xd*) name=xd; blk=10; chr=42;;
1995-01-27 02:28:11 +03:00
xy*) name=xy; blk=3; chr=9 ;;
1995-07-07 19:46:44 +04:00
vnd*) name=vnd; blk=5; chr=19;;
1995-08-17 22:02:27 +04:00
ccd*) name=ccd; blk=9; chr=33;;
1994-07-13 01:11:18 +04:00
esac
case $unit in
1996-10-09 04:40:33 +04:00
0|1|2|3|4|5|6|7) offset=`expr $unit \* 8`;;
1995-01-27 02:28:11 +03:00
*) echo bad unit for $name in: $arg;;
1994-07-13 01:11:18 +04:00
esac
for part in a.0 b.1 c.2 d.3 e.4 f.5 g.6 h.7
do
(
tmp="$IFS" ; IFS="$IFS."
set -- $part
IFS="$tmp" ; unset tmp
minor=`expr $offset + $2`
mk $name$unit$1 b $blk $minor 640 operator
mk r$name$unit$1 c $chr $minor 640 operator
)
done
;;
1995-07-07 19:46:44 +04:00
st*)
name=st; blk=11; chr=18;
1995-11-21 23:57:39 +03:00
offset=`expr $unit \* 16`;
1995-07-07 19:46:44 +04:00
mk r$name$unit c $chr `expr $offset + 0`
mk nr$name$unit c $chr `expr $offset + 1`
mk er$name$unit c $chr `expr $offset + 2`
mk enr$name$unit c $chr `expr $offset + 3`
;;
bwtwo*)
mk bwtwo$unit c 27 $unit
;;
cgtwo*)
mk cgtwo$unit c 31 $unit
;;
cgfour*)
mk cgfour$unit c 39 $unit
;;
1995-10-09 02:23:30 +03:00
rd*)
mk rd$unit b 13 $unit
# mk rrd$unit b 13 `expr $unit + 16`
mk rd${unit}c b 13 `expr $unit + 16`
;;
1994-07-13 01:11:18 +04:00
local)
umask 0
sh MAKEDEV.local
;;
*)
echo $arg: unknown device
;;
esac
done