Browse Source

Add cgtwo, cgfourteen, tcx.

OPENBSD_2_2
downsj 27 years ago
parent
commit
a17836ef28
1 changed files with 19 additions and 5 deletions
  1. +19
    -5
      src/etc/etc.sparc/MAKEDEV

+ 19
- 5
src/etc/etc.sparc/MAKEDEV View File

@ -1,6 +1,6 @@
#!/bin/sh - #!/bin/sh -
# #
# $OpenBSD: MAKEDEV,v 1.29 1997/06/06 09:53:52 grr Exp $
# $OpenBSD: MAKEDEV,v 1.30 1997/08/08 09:43:02 downsj Exp $
# #
# Copyright (c) 1990 The Regents of the University of California. # Copyright (c) 1990 The Regents of the University of California.
# All rights reserved. # All rights reserved.
@ -39,11 +39,10 @@
# std standard devices # std standard devices
# local configuration specific devices # local configuration specific devices
# Tapes: # Tapes:
# st* ? tape
# st* SCSI tape
# Disks: # Disks:
# sd* SCSI disks # sd* SCSI disks
# cd* SCSI cdrom drives # cd* SCSI cdrom drives
# st* SCSI tape
# ch* SCSI changer # ch* SCSI changer
# uk* unknown SCSI # uk* unknown SCSI
# ss* SCSI scanners # ss* SCSI scanners
@ -61,10 +60,13 @@
# audio # audio
# openprom # openprom
# bwtwo* # bwtwo*
# cgtwo*
# cgthree* # cgthree*
# cgfour* # cgfour*
# cgsix* # cgsix*
# cgeight* # cgeight*
# cgfourteen*
# tcx*
# bpf* packet filter # bpf* packet filter
# lkm loadable kernel modules interface # lkm loadable kernel modules interface
# tun* network tunnel driver # tun* network tunnel driver
@ -166,8 +168,8 @@ all)
sh ${this} ccd0 ccd1 ccd2 ccd3 sh ${this} ccd0 ccd1 ccd2 ccd3
sh ${this} bpf0 bpf1 bpf2 bpf3 sh ${this} bpf0 bpf1 bpf2 bpf3
sh ${this} ipl sh ${this} ipl
sh ${this} bwtwo0 cgthree0 cgfour0 cgsix0
sh ${this} cgeight0
sh ${this} bwtwo0 cgtwo0 cgthree0 cgfour0 cgsix0
sh ${this} cgeight0 cgfourteen0 tcx0
sh ${this} lkm random local sh ${this} lkm random local
;; ;;
@ -216,6 +218,10 @@ bwtwo*)
mknod bwtwo$unit c 27 $unit; chmod 666 bwtwo$unit mknod bwtwo$unit c 27 $unit; chmod 666 bwtwo$unit
;; ;;
cgtwo*)
mknod cgtwo$unit c 31 $unit; chmod 666 cgtwo$unit
;;
cgthree*) cgthree*)
mknod cgthree$unit c 55 $unit; chmod 666 cgthree$unit mknod cgthree$unit c 55 $unit; chmod 666 cgthree$unit
;; ;;
@ -232,6 +238,14 @@ cgeight*)
mknod cgeight$unit c 64 $unit; chmod 666 cgeight$unit mknod cgeight$unit c 64 $unit; chmod 666 cgeight$unit
;; ;;
cgfourteen*)
mknod cgfourteen$unit c 99 $unit; chmod 666 cgfourteen$unit
;;
tcx*)
mknod tcx$unit c 109 $unit; chmod 666 tcx$unit
;;
audio) audio)
mknod audio c 69 0; chmod 666 audio mknod audio c 69 0; chmod 666 audio
;; ;;


Loading…
Cancel
Save