|
|
@ -1,6 +1,6 @@ |
|
|
|
#!/bin/sh - |
|
|
|
# |
|
|
|
# $OpenBSD: MAKEDEV,v 1.78 2000/04/09 21:08:26 matthieu Exp $ |
|
|
|
# $OpenBSD: MAKEDEV,v 1.79 2000/04/15 17:50:45 jakob Exp $ |
|
|
|
# $NetBSD: MAKEDEV,v 1.40 1996/03/31 00:50:47 perry Exp $ |
|
|
|
# |
|
|
|
# Copyright (c) 1990 The Regents of the University of California. |
|
|
@ -72,6 +72,7 @@ |
|
|
|
# usb* Bus control devices used by usbd for attach/detach |
|
|
|
# uhid* Generic HID devices |
|
|
|
# ulpt* Printer devices |
|
|
|
# urio* Diamond Multimedia Rio 500 |
|
|
|
# ugen* Generic device |
|
|
|
# |
|
|
|
# Call units: |
|
|
@ -213,6 +214,7 @@ usbs) |
|
|
|
sh $this usb0 usb1 |
|
|
|
sh $this uhid0 uhid1 uhid2 uhid3 |
|
|
|
sh $this ulpt0 ulpt1 |
|
|
|
sh $this urio0 |
|
|
|
;; |
|
|
|
|
|
|
|
std) |
|
|
@ -254,6 +256,13 @@ ulpt*) |
|
|
|
chmod 600 ulpt$unit |
|
|
|
;; |
|
|
|
|
|
|
|
urio*) |
|
|
|
rm -f urio$unit |
|
|
|
mknod urio$unit c 65 $unit |
|
|
|
chown root.wheel urio$unit |
|
|
|
chmod 666 urio$unit |
|
|
|
;; |
|
|
|
|
|
|
|
ugen*) |
|
|
|
for j in 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 |
|
|
|
do |
|
|
|