NetBSD/etc/etc.sun3/MAKEDEV

269 lines
6.0 KiB
Plaintext
Raw Normal View History

1994-07-13 01:11:18 +04:00
#!/bin/sh -
#
# $NetBSD: MAKEDEV,v 1.25 1999/01/16 01:40:30 abs 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* SCSI tape
1994-07-13 01:11:18 +04:00
# Disks:
# sd* Sun SCSI disks
# fd* Floppies
# vnd* "file" pseudo-disks
1995-08-17 22:02:27 +04:00
# ccd* concatenated disk driver
1998-11-13 07:49:01 +03:00
# raid* RAIDframe 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
1997-01-02 02:46:17 +03:00
# md* memory pseudo-disk
# random Random number generator
1998-10-16 01:22:51 +04:00
# scsibus* SCSI busses
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 rm -f $1
1994-07-13 01:11:18 +04:00
$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)
1997-12-10 00:22:16 +03:00
sh $0 std fd pty0
sh $0 bwtwo0 cgtwo0 cgfour0
1998-11-13 07:49:01 +03:00
sh $0 raid0 raid1 raid2 raid3
sh $0 sd0 sd1 sd2 sd3 sd4 sd5 sd6
1998-02-11 22:33:56 +03:00
sh $0 cd0 cd1 st0 st1 st2 fd0
sh $0 xd0 xd1 xd2 xd3
sh $0 xy0 xy1 xy2 xy3
sh $0 bpf0 bpf1 bpf2 bpf3 bpf4 bpf5 bpf6 bpf7
sh $0 tun0 tun1
1997-12-10 00:22:16 +03:00
sh $0 lkm random
1998-10-16 01:22:51 +04:00
sh $0 scsibus0 scsibus1 scsibus2 scsibus3
sh $0 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
1997-05-06 22:42:27 +04:00
mk leds c 3 13
1994-07-13 01:11:18 +04:00
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)
rm -f fd/*
mkdir fd > /dev/null 2>&1
n=0
while [ $n -lt 64 ]; do
1997-12-10 00:22:16 +03:00
mk fd/$n c 23 $n 666
n=$(($n + 1))
1994-07-13 01:11:18 +04:00
done
chown -R root.wheel fd
chmod 755 fd
1994-07-13 01:11:18 +04:00
;;
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*)
class=${arg#pty}
1994-07-13 01:11:18 +04:00
case $unit in
0) name=p;;
1) name=q;;
2) name=r;;
3) name=s;;
4) name=t;;
5) name=u;;
6) name=v;;
7) name=w;;
8) name=x;;
9) name=y;;
10) name=z;;
11) name=P;;
12) name=Q;;
13) name=R;;
14) name=S;;
15) name=T;;
*) echo "$0: $i: pty unit must be between 0 and 15"
continue ;;
1994-07-13 01:11:18 +04:00
esac
rm -f tty$name[0-9a-f] pty$name[0-9a-f]
for j in 0 1 2 3 4 5 6 7 8 9 a b c d e f
1994-07-13 01:11:18 +04:00
do
case $j in
[0-9]) jn=$j ;;
a) jn=10 ;;
b) jn=11 ;;
c) jn=12 ;;
d) jn=13 ;;
e) jn=14 ;;
f) jn=15 ;;
esac
unit=$(($class * 16 + $jn))
mknod tty$name$j c 20 $unit
mknod pty$name$j c 21 $unit
1994-07-13 01:11:18 +04:00
done
chgrp wheel tty$name? pty$name?
chmod 666 tty$name? pty$name?
1994-07-13 01:11:18 +04:00
;;
1998-11-13 07:49:01 +03:00
ccd*|cd*|fd*|sd*|xd*|xy*|vnd*|raid*)
1994-07-13 01:11:18 +04:00
case $arg in
1998-02-11 22:33:56 +03:00
ccd*) name=ccd; blk=9; chr=33;;
1995-07-07 19:46:44 +04:00
cd*) name=cd; blk=18; chr=58;;
1998-02-11 22:33:56 +03:00
fd*) name=fd; blk=16; chr=54;;
1998-11-13 07:49:01 +03:00
raid*) name=raid; blk=25; chr=82;;
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;;
1994-07-13 01:11:18 +04:00
esac
case $unit in
[0-7]) offset=$(($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=$(($offset + $2))
1994-07-13 01:11:18 +04:00
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;
mk r$name$unit c $chr $(($unit * 16 + 0)) 660 operator
mk nr$name$unit c $chr $(($unit * 16 + 1)) 660 operator
mk er$name$unit c $chr $(($unit * 16 + 2)) 660 operator
mk enr$name$unit c $chr $(($unit * 16 + 3)) 660 operator
1995-07-07 19:46:44 +04:00
;;
bwtwo*)
mk bwtwo$unit c 27 $unit
;;
cgtwo*)
mk cgtwo$unit c 31 $unit
;;
cgfour*)
mk cgfour$unit c 39 $unit
;;
1997-01-02 02:46:17 +03:00
md*)
name=md; blk=13; chr=52;
mk md${unit} b $blk $((($unit + 0) * 8)) 640 operator
mk md${unit}c b $blk $((($unit + 16) * 8)) 640 operator
# mk rmd${unit} c $chr $((($unit + 16) * 8)) 640 operator
1995-10-09 02:23:30 +03:00
;;
1997-11-04 18:21:00 +03:00
lkm)
mk lkm c 72 0 640 kmem
1997-11-04 18:21:00 +03:00
;;
random)
mk random c 80 0 444
mk urandom c 80 1
;;
1998-10-16 01:22:51 +04:00
scsibus*)
mk scsibus${unit} c 81 $unit 644 wheel
;;
1994-07-13 01:11:18 +04:00
local)
umask 0
sh $0.local all
umask 77
1994-07-13 01:11:18 +04:00
;;
*)
echo $arg: unknown device
;;
esac
done