kbd -> wskbd, mouse -> wsmouse

This commit is contained in:
thorpej 1999-01-19 22:27:35 +00:00
parent 257673aaae
commit d0798bd8bd
1 changed files with 17 additions and 11 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh -
# $NetBSD: MAKEDEV,v 1.35 1999/01/16 01:40:27 abs Exp $
# $NetBSD: MAKEDEV,v 1.36 1999/01/19 22:27:35 thorpej Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@ -102,7 +102,7 @@ all)
sh $0 bpf0 bpf1 bpf2 bpf3 bpf4 bpf5 bpf6 bpf7
sh $0 tun0 tun1 tun2 tun3
sh $0 ttyB0 ttyB1 ttyC0 ttyC1 ttyE0 ttyE1 lkm
sh $0 kbd mouse lpa0 lpt0 audio ipl wd0 wd1 fd0 fd1
sh $0 wskbd0 wsmouse0 lpa0 lpt0 audio ipl wd0 wd1 fd0 fd1
sh $0 random satlink0 speaker local
sh $0 scsibus0 scsibus1 scsibus2 scsibus3
sh $0 usbs
@ -112,7 +112,7 @@ minimal)
sh $0 std
sh $0 sd0 sd1 sd2 sd3 pty0 st0 ch0 cd0 ccd0 ccd1 md0
sh $0 wd0 wd1 fd0 fd1
sh $0 ttyB0 ttyB1 ttyC0 ttyC1 ttyE0 ttyE1 kbd mouse
sh $0 ttyB0 ttyB1 ttyC0 ttyC1 ttyE0 ttyE1 wsbkd0 wsmouse0
;;
usbs)
@ -342,16 +342,22 @@ lkm)
chmod 640 lkm
;;
kbd)
rm -f kbd
mknod kbd c 29 0
chmod 666 kbd
wskbd*)
unit=${i#wskbd}
wskbd=wskbd$unit
rm -f $wskbd
mknod $wskbd c 29 $unit
chown root.wheel $wskbd
chmod 666 $wskbd
;;
mouse)
rm -f mouse
mknod mouse c 30 0
chmod 666 mouse
wsmouse*)
unit=${i#wsmouse}
wsmouse=wsmouse$unit
rm -f $wsmouse
mknod $wsmouse c 30 $unit
chown root.wheel $wsmouse
chmod 666 $wsmouse
;;
audio*)