Browse Source

Add two I2O devices as iop[01]

OPENBSD_3_0
niklas 23 years ago
parent
commit
26f8bc61ec
1 changed files with 10 additions and 2 deletions
  1. +10
    -2
      src/etc/etc.i386/MAKEDEV

+ 10
- 2
src/etc/etc.i386/MAKEDEV View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $OpenBSD: MAKEDEV,v 1.101 2001/06/28 02:58:54 kjc Exp $
# $OpenBSD: MAKEDEV,v 1.102 2001/07/03 22:52:30 niklas Exp $
# $NetBSD: MAKEDEV,v 1.40 1996/03/31 00:50:47 perry Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
@ -99,6 +99,7 @@
# tuner0 tuner device
# wdt0 watchdog timer
# altq ALTQ control interface
# iop I2O controller device
#
PATH=/sbin:/usr/sbin:/bin:/usr/bin
@ -199,7 +200,7 @@ all)
sh $this fd1 fd1B fd1C fd1D fd1E fd1F fd1G fd1H
sh $this xfs0 music altq
sh $this rmidi0 rmidi1 rmidi2 rmidi3 rmidi4 rmidi5 rmidi6 rmidi7
sh $this usbs crypto
sh $this usbs crypto iop0 iop1
# MISSING:
# sh $this mouse-?
;;
@ -245,6 +246,13 @@ crypto)
mknod crypto c 70 0 ; chmod 666 crypto
;;
iop*)
rm -f iop$unit
mknod iop$unit c 75 $unit
chown root.wheel iop$unit
chmod 660 iop$unit
;;
usb*)
rm -f usb$unit
mknod usb$unit c 61 $unit


Loading…
Cancel
Save