From 2cceb402c433d237a9a2b9f9d2bf819dd990e853 Mon Sep 17 00:00:00 2001 From: kstailey <> Date: Mon, 11 Nov 1996 23:20:46 +0000 Subject: [PATCH] Updates for SCSI scanner and SCSI unknown devices. Removed MI *dev_decl() stuff that is now in sys/conf.h --- src/etc/etc.pmax/MAKEDEV | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/etc/etc.pmax/MAKEDEV b/src/etc/etc.pmax/MAKEDEV index 93636599..259dd0ff 100644 --- a/src/etc/etc.pmax/MAKEDEV +++ b/src/etc/etc.pmax/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.7 1996/09/18 22:03:46 deraadt Exp $ +# $OpenBSD: MAKEDEV,v 1.8 1996/11/11 23:20:46 kstailey Exp $ # @(#)MAKEDEV 8.1 (Berkeley) 6/9/93 # @@ -24,6 +24,8 @@ # bpf* packet filter # lkm loadable kernel modules interface # tun* network tunnel driver +# uk* unknown SCSI +# ss* SCSI scanners # Platform-specific devices: # NOTE: /dev/mouse should be a link to one of these for X windows. # pm* raw interface to PMAX graphics devices @@ -260,6 +262,25 @@ random|srandom|urandom|prandom|arandom) chmod 644 random srandom urandom prandom arandom ;; +uk*) + unit=`expr $i : 'uk\(.*\)'` + rm -f uk$unit + mknod uk$unit c 98 $unit + chown root.operator uk$unit + chmod 640 uk$unit + ;; + +ss*) + unit=`expr $i : 'ss\(.*\)'` + rm -f ss$unit + mknod ss$unit c 99 $unit + chown root.operator ss$unit + chmod 440 ss$unit +# backwards compatibility with older PINTs + rm -f scan$unit + ln -s ss$unit scan$unit + ;; + local) umask 0 sh MAKEDEV.local