diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-07-05 02:54:08 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-07-05 02:54:08 +0000 |
commit | 3c3590e8954d275d5f992dae62f8bbd5d1c05aa8 (patch) | |
tree | b51daf8b8d89348bd58661b6ca9400a634efd6fa /etc/etc.alpha/MAKEDEV | |
parent | 19d81b39343f8984385993dbba9444e159fb5313 (diff) |
create iop0, iop1
Diffstat (limited to 'etc/etc.alpha/MAKEDEV')
-rw-r--r-- | etc/etc.alpha/MAKEDEV | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/etc/etc.alpha/MAKEDEV b/etc/etc.alpha/MAKEDEV index 5027b084ea8..79acd20322e 100644 --- a/etc/etc.alpha/MAKEDEV +++ b/etc/etc.alpha/MAKEDEV @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: MAKEDEV,v 1.59 2001/06/28 02:58:52 kjc Exp $ +# $OpenBSD: MAKEDEV,v 1.60 2001/07/05 02:54:06 mickey Exp $ # $NetBSD: MAKEDEV,v 1.8.4.1 1996/06/18 00:41:56 cgd Exp $ # # Copyright (c) 1990 The Regents of the University of California. @@ -84,6 +84,7 @@ # uk* SCSI Unknown device # ss* SCSI scanners # altq ALTQ control interface +# iop I2O controller device PATH=/sbin:/bin:/usr/bin:/usr/sbin this=$0 @@ -164,7 +165,7 @@ all) sh $this uk0 uk1 ss0 ss1 sh $this ttyc0 ttyc1 ttyc2 ttyc3 ttyc4 ttyc5 ttyc6 ttyc7 sh $this local xfs0 altq - sh $this usbs wscons ttyCcfg + sh $this usbs wscons ttyCcfg iop0 iop1 ;; raminst) @@ -192,6 +193,13 @@ wsmux|wskbd|wsmouse) chmod 600 wsmouse wskbd ;; +iop*) + rm -f iop$unit + mknod iop$unit c 54 $unit + chown root.wheel iop$unit + chmod 660 iop$unit + ;; + usbs) sh $this usb usb0 usb1 sh $this uhid0 uhid1 uhid2 uhid3 |