NetBSD/etc/etc.sparc64/MAKEDEV

494 lines
12 KiB
Bash

#!/bin/sh -
#
# $NetBSD: MAKEDEV,v 1.19 2001/05/14 09:11:10 wiz Exp $
#
# 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
#
###########################################################################
#
# PLEASE RUN "cd ../share/man/man8 ; perl5 MAKEDEV2manpage.pl"
# AFTER CHANGING THIS FILE, AND COMMIT THE UPDATED MANPAGE!
#
###########################################################################
#
# Device "make" file. Valid arguments:
# std standard devices
# local configuration specific devices
# isdn make ISDN devices
# Tapes:
# st* SCSI tape
# Disks:
# sd* SCSI disks
# wd* IDE disks
# cd* SCSI cdrom drives
# ch* SCSI changer
# fd* Floppies
# vnd* "file" pseudo-disks
# ccd* concatenated disk devices
# raid* RAIDframe disk driver
# md* memory pseudo-disk devices
# Pseudo terminals:
# pty* set of 16 master and slave pseudo terminals
# ISDN devices:
# i4b comunication between userland isdnd and kernel
# i4bctl control device
# i4brbch* raw b-channel access
# i4btel* telephonie device
# i4btrc* trace device
# Special purpose devices:
# audio* audio devices.
# openprom OPENPROM and EEPROM interface
# bwtwo* monochromatic frame buffer
# cgtwo* 8-bit color frame buffer
# cgthree* 8-bit color frame buffer
# cgfour* 8-bit color frame buffer
# cgsix* accelerated 8-bit color frame buffer
# cgeight* 24-bit color frame buffer
# tcx* accelerated 8/24-bit color frame buffer
# bpf* packet filter
# lkm loadable kernel modules interface
# tun* network tunnel driver
# ipl IP filter
# random Random number generator
# scsibus* SCSI busses, see scsictl(8), scsi(4)
# ses* SES/SAF-TE SCSI Devices
#
dialin=0
dialout=524288 # high bit of the minor number
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:/usr/etc
umask 77
for i
do
case $i in
all)
sh -$- $0 std ttya ttyb ttyc ttyd
sh -$- $0 fd sd0 sd1 sd2 sd3 sd4
sh -$- $0 wd0 wd1 wd2 wd3 cd0 st0 st1 fd0 md0 md1
sh -$- $0 audio0 audio1 audio2 audio3
sh -$- $0 pty0 pty1 pty2 pty3 vnd0 vnd1 vnd2 vnd3 audio
sh -$- $0 tun0 tun1 tun2 tun3
sh -$- $0 ccd0 ccd1 ccd2 ccd3 raid0 raid1 raid2 raid3
sh -$- $0 bpf0 bpf1 bpf2 bpf3 bpf4 bpf5 bpf6 bpf7
sh -$- $0 bwtwo0 cgtwo0 cgthree0 cgfour0 cgsix0
sh -$- $0 cgeight0 tcx0
sh -$- $0 scsibus0 scsibus1 scsibus2 scsibus3
sh -$- $0 ipl lkm random local
sh -$- $0 isdn
;;
floppy|ramdisk)
sh -$- $0 std ttya ttyb ttyc ttyd pty0
sh -$- $0 sd0 sd1 sd2 sd3 sd4 sd5 md0
sh -$- $0 wd0 wd1 cd0 cd1 st0 st1 fd0
sh -$- $0 random
;;
isdn)
sh $0 i4b i4bctl i4brbch0 i4brbch1 i4btel0 i4btel1 i4btrc0 i4btrc1
;;
std)
rm -f console tty kmem mem null zero eeprom openprom drum klog \
stdin stdout stderr fd/* ttya ttyb fb mouse kbd bpp
mknod console c 0 0
mknod tty c 2 0 ; chmod 666 tty
mknod kmem c 3 1 ; chmod 640 kmem ; chgrp kmem kmem
mknod mem c 3 0 ; chmod 640 mem ; chgrp kmem mem
mknod null c 3 2 ; chmod 666 null
mknod zero c 3 12 ; chmod 666 zero
mknod eeprom c 3 11 ; chmod 640 eeprom ; chgrp kmem eeprom
mknod openprom c 70 0 ; chmod 640 openprom;chgrp kmem openprom
mknod drum c 7 0 ; chmod 640 drum ; chgrp kmem drum
mknod klog c 16 0 ; chmod 600 klog
mknod stdin c 24 0 ; chmod 666 stdin
mknod stdout c 24 1 ; chmod 666 stdout
mknod stderr c 24 2 ; chmod 666 stderr
mknod fb c 22 0 ; chmod 666 fb
mknod mouse c 13 0 ; chmod 666 mouse
mknod kbd c 29 0 ; chmod 666 kbd
mknod bpp c 107 0 ; chmod 666 bpp
;;
tty[abcd])
unit=${i#???}
case $unit in
a) index=0;;
b) index=1;;
c) index=4;;
d) index=5;;
esac
rm -f tty$unit dty$unit
mknod tty$unit c 12 $(($index + $dialin ))
mknod dty$unit c 12 $(($index + $dialout))
chown uucp.wheel tty$unit dty$unit
;;
fd)
rm -f fd/*
mkdir fd > /dev/null 2>&1
n=0
while [ $n -lt 64 ]; do
mknod fd/$n c 24 $n
n=$(($n + 1))
done
chown -R root.wheel fd
chmod 755 fd
chmod 666 fd/*
;;
bwtwo*)
unit=${i#bwtwo}
rm -f bwtwo$unit
mknod bwtwo$unit c 27 $unit; chmod 666 bwtwo$unit
;;
cgtwo*)
unit=${i#cgtwo}
rm -f cgtwo$unit
mknod cgtwo$unit c 31 $unit; chmod 666 cgtwo$unit
;;
cgthree*)
unit=${i#cgthree}
rm -f cgthree$unit
mknod cgthree$unit c 55 $unit; chmod 666 cgthree$unit
;;
cgfour*)
unit=${i#cgfour}
rm -f cgfour$unit
mknod cgfour$unit c 39 $unit; chmod 666 cgfour$unit
;;
cgsix*)
unit=${i#cgsix}
rm -f cgsix$unit
mknod cgsix$unit c 67 $unit; chmod 666 cgsix$unit
;;
cgeight*)
unit=${i#cgeight}
rm -f cgeight$unit
mknod cgeight$unit c 64 $unit; chmod 666 cgeight$unit
;;
tcx*)
unit=${i#tcx}
rm -f tcx$unit
mknod tcx$unit c 109 $unit; chmod 666 tcx$unit
;;
audio*)
unit=${i#audio}
audio=audio$unit
sound=sound$unit
mixer=mixer$unit
major=69
audioctl=audioctl$unit
if [ "$unit" = "" ]; then unit=0; fi
rm -f $audio $sound $mixer $audioctl
mknod $sound c $major $(($unit + 0))
mknod $audio c $major $(($unit + 128))
mknod $mixer c $major $(($unit + 16))
mknod $audioctl c $major $(($unit + 192))
chown root.wheel $audio $sound $mixer $audioctl
chmod 666 $audio $sound $mixer $audioctl
;;
bpf*)
unit=${i#bpf}
rm -f bpf$unit
mknod bpf$unit c 105 $unit
chmod 600 bpf$unit
chown root.wheel bpf$unit
;;
tun*)
unit=${i#tun}
rm -f tun$unit
mknod tun$unit c 111 $unit
chmod 600 tun$unit
chown root.wheel tun$unit
;;
md*)
unit=${i#md}; blk=5; chr=61;
rm -f md${unit}? rmd${unit}?
mknod md${unit}a b $blk $(($unit * 8 + 0))
mknod md${unit}c b $blk $(($unit * 8 + 2))
# mknod rmd${unit}a c $chr $(($unit * 8 + 0))
# mknod rmd${unit}c c $chr $(($unit * 8 + 2))
chgrp operator md${unit}? #rmd${unit}?
chmod 640 md${unit}? #rmd${unit}?
;;
ccd*|fd*|wd*|sd*|cd*|vnd*|raid*)
case $i in
ccd*) name=ccd; unit=${i#ccd}; blk=9; chr=23;;
fd*) name=fd; unit=${i#fd}; blk=16; chr=54;;
wd*) name=wd; unit=${i#wd}; blk=12; chr=26;;
sd*) name=sd; unit=${i#sd}; blk=7; chr=17;;
cd*) name=cd; unit=${i#cd}; blk=18; chr=58;;
raid*) name=raid; unit=${i#raid}; blk=25; chr=121;;
vnd*) name=vnd; unit=${i#vnd}; blk=8; chr=110;;
esac
case $unit in
0|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|\
17|18|19|20|21|22|23|24|25|26|27|28|29|30|31)
rm -f ${name}${unit}[a-h] r${name}${unit}[a-h]
mknod ${name}${unit}c b $blk $(($unit * 8 + 2))
mknod ${name}${unit}a b $blk $(($unit * 8 + 0))
mknod ${name}${unit}b b $blk $(($unit * 8 + 1))
mknod ${name}${unit}d b $blk $(($unit * 8 + 3))
mknod ${name}${unit}e b $blk $(($unit * 8 + 4))
mknod ${name}${unit}f b $blk $(($unit * 8 + 5))
mknod ${name}${unit}g b $blk $(($unit * 8 + 6))
mknod ${name}${unit}h b $blk $(($unit * 8 + 7))
mknod r${name}${unit}a c $chr $(($unit * 8 + 0))
mknod r${name}${unit}b c $chr $(($unit * 8 + 1))
mknod r${name}${unit}c c $chr $(($unit * 8 + 2))
mknod r${name}${unit}d c $chr $(($unit * 8 + 3))
mknod r${name}${unit}e c $chr $(($unit * 8 + 4))
mknod r${name}${unit}f c $chr $(($unit * 8 + 5))
mknod r${name}${unit}g c $chr $(($unit * 8 + 6))
mknod r${name}${unit}h c $chr $(($unit * 8 + 7))
chgrp operator ${name}${unit}[a-h] r${name}${unit}[a-h]
chmod 640 ${name}${unit}[a-h] r${name}${unit}[a-h]
;;
*)
echo bad unit for disk in: $i
;;
esac
;;
st*)
case $i in
st*) name=st; unit=${i#st}; blk=11; chr=18;;
esac
rm -f $name$unit n$name$unit e$name$unit en$name$unit \
r$name$unit nr$name$unit er$name$unit enr$name$unit
mknod ${name}${unit} b $blk $(($unit * 16 + 0))
mknod n${name}${unit} b $blk $(($unit * 16 + 1))
mknod e${name}${unit} b $blk $(($unit * 16 + 2))
mknod en${name}${unit} b $blk $(($unit * 16 + 3))
mknod r${name}${unit} c $chr $(($unit * 16 + 0))
mknod nr${name}${unit} c $chr $(($unit * 16 + 1))
mknod er${name}${unit} c $chr $(($unit * 16 + 2))
mknod enr${name}${unit} c $chr $(($unit * 16 + 3))
chgrp operator ${name}${unit} n${name}${unit} \
e$name$unit en$name$unit \
r${name}${unit} nr${name}${unit} \
er${name}${unit} enr${name}${unit}
chmod 660 ${name}${unit} n${name}${unit} \
e$name$unit en$name$unit \
r${name}${unit} nr${name}${unit} \
er${name}${unit} enr${name}${unit}
;;
ss*)
case $i in
ss*) name=ss; unit=${i#ss}; chr=59;;
esac
rm -f $name$unit n$name$unit en$name$unit
mknod $name$unit c $chr $(($unit * 16 + 0))
mknod n$name$unit c $chr $(($unit * 16 + 1))
mknod en$name$unit c $chr $(($unit * 16 + 3))
chgrp operator $name$unit n$name$unit en$name$unit
chmod 640 $name$unit n$name$unit en$name$unit
;;
ses*|ch*|uk*)
case $i in
ch*) name=ch; unit=${i#ch}; chr=19;;
uk*) name=uk; unit=${i#uk}; chr=60;;
ses*) name=ses; unit=${i#ses}; chr=4;;
esac
rm -f $name$unit
mknod ${name}${unit} c $chr $(($unit + 0))
chgrp operator ${name}${unit}
chmod 640 ${name}${unit}
;;
lkm)
rm -f lkm
mknod lkm c 112 0
chown root.kmem lkm
chmod 640 lkm
;;
ipl)
rm -f ipl ipnat ipstate ipauth
mknod ipl c 25 0
mknod ipnat c 25 1
mknod ipstate c 25 2
mknod ipauth c 25 3
chown root.wheel ipl ipnat ipstate ipauth
chmod 600 ipl ipnat ipstate ipauth
;;
pty*)
class=${i#pty}
case $class 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 ;;
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
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
done
chgrp wheel tty$name? pty$name?
chmod 666 tty$name? pty$name?
;;
random)
rm -f random urandom
mknod random c 119 0
mknod urandom c 119 1
chown root.wheel random urandom
chmod 444 random
chmod 644 urandom
;;
magma*)
unit=${i#magma}
if [ 0$unit -gt 3 ]
then
echo "bad unit for $i: $unit"
break
fi
rm -f tty$unit[0-9a-f] bpp$unit[01]
for j in 0 1 2 3 4 5 6 7 8 9 a b c d e f
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
mknod tty$unit$j c 100 $(($unit * 64 + $jn))
done
mknod bpp${unit}0 c 101 $(($unit * 64 + 0))
mknod bpp${unit}1 c 101 $(($unit * 64 + 1))
;;
scsibus*)
unit=${i#scsibus};
rm -f scsibus$unit
mknod scsibus$unit c 120 $unit
chown root:wheel scsibus$unit
chmod 644 scsibus$unit
;;
i4b)
rm -f i4b
mknod i4b c 72 0
chmod 600 i4b
;;
i4bctl)
rm -f i4bctl
mknod i4bctl c 73 0
chmod 600 i4bctl
;;
i4brbch*)
unit=${i#i4brbch};
rm -f i4brbch$unit
mknod i4brbch$unit c 74 $unit
chmod 600 i4brbch$unit
;;
i4btel*)
unit=${i#i4btel};
rm -f i4btel$unit
mknod i4btel$unit c 76 $unit
chmod 600 i4btel$unit
;;
i4btrc*)
unit=${i#i4btrc};
rm -f i4btrc$unit
mknod i4btrc$unit c 75 $unit
chmod 600 i4btrc$unit
;;
local)
umask 0
sh $0.local all
umask 77
;;
*)
echo $i: unknown device
;;
esac
done