diff options
author | Jakob Schlyter <jakob@cvs.openbsd.org> | 2000-04-15 17:50:46 +0000 |
---|---|---|
committer | Jakob Schlyter <jakob@cvs.openbsd.org> | 2000-04-15 17:50:46 +0000 |
commit | 1b6dca890ec2c39f082d4ae06434e23a3b1b08ab (patch) | |
tree | cf1e4fe5aa41e85a630339c24c4e80048f42e8fb /etc | |
parent | c9b6b877fe8f4a0f38c9fe9cf9f7c007eb3fbacb (diff) |
add urio(4)
Diffstat (limited to 'etc')
-rw-r--r-- | etc/etc.i386/MAKEDEV | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/etc/etc.i386/MAKEDEV b/etc/etc.i386/MAKEDEV index 99002590741..faa64c5d4d9 100644 --- a/etc/etc.i386/MAKEDEV +++ b/etc/etc.i386/MAKEDEV @@ -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 |