Add tcx framebuffer.

Add rd memory disk device.
This commit is contained in:
pk 1996-06-20 20:26:53 +00:00
parent 43cca6772f
commit d5a4ec3087
1 changed files with 13 additions and 0 deletions

View File

@ -60,9 +60,11 @@
# cgfour* # cgfour*
# cgsix* # cgsix*
# cgeight* # cgeight*
# tcx*
# bpf* packet filter # bpf* packet filter
# lkm loadable kernel modules interface # lkm loadable kernel modules interface
# tun* network tunnel driver # tun* network tunnel driver
# rd* memory disk driver
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:/usr/etc PATH=/sbin:/bin/:/usr/bin:/usr/sbin:/usr/etc
umask 77 umask 77
@ -133,6 +135,10 @@ cgeight*)
mknod cgeight$unit c 64 $unit; chmod 666 cgeight$unit mknod cgeight$unit c 64 $unit; chmod 666 cgeight$unit
;; ;;
tcx*)
mknod tcx$unit c 109 $unit; chmod 666 tcx$unit
;;
audio) audio)
mknod audio c 69 0; chmod 666 audio mknod audio c 69 0; chmod 666 audio
;; ;;
@ -155,6 +161,13 @@ tun*)
chown root.wheel tun$unit chown root.wheel tun$unit
;; ;;
rd*)
rm -f rd$unit
mknod rd$unit b 5 $unit
chown root.operator rd$unit
chmod 640 rd$unit
;;
ccd*|fd*|sd*|xd*|xy*|cd*|vnd*) ccd*|fd*|sd*|xd*|xy*|cd*|vnd*)
umask 2 umask 2
case $i in case $i in