From 0e60e64d95d30fc579e55274cd87af69490f9680 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Sat, 12 Nov 1994 15:48:54 +0000 Subject: [PATCH] Wrong raw device was created for cd/mcd: d instead of c --- etc/MAKEDEV | 6 +++--- etc/etc.i386/MAKEDEV | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/etc/MAKEDEV b/etc/MAKEDEV index e0b3fb038b42..cedafb76a81c 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -71,7 +71,7 @@ # socksys iBCS2 socket system driver # vat VAT compatibility audio driver (requires snd*) # -# $Id: MAKEDEV,v 1.47 1994/11/02 06:36:42 phk Exp $ +# $Id: MAKEDEV,v 1.48 1994/11/10 02:32:29 phk Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin: @@ -395,9 +395,9 @@ cd*|mcd*) case $unit in 0|1|2|3|4|5|6) mknod ${name}${unit}a b $blk `expr $unit '*' 8 + 0` - mknod ${name}${unit}d b $blk `expr $unit '*' 8 + 3` + mknod ${name}${unit}c b $blk `expr $unit '*' 8 + 2` mknod r${name}${unit}a c $chr `expr $unit '*' 8 + 0` - mknod r${name}${unit}d c $chr `expr $unit '*' 8 + 3` + mknod r${name}${unit}c c $chr `expr $unit '*' 8 + 2` chgrp operator ${name}${unit}[a-h] r${name}${unit}[a-h] chmod 640 ${name}${unit}[a-h] r${name}${unit}[a-h] ;; diff --git a/etc/etc.i386/MAKEDEV b/etc/etc.i386/MAKEDEV index e0b3fb038b42..cedafb76a81c 100644 --- a/etc/etc.i386/MAKEDEV +++ b/etc/etc.i386/MAKEDEV @@ -71,7 +71,7 @@ # socksys iBCS2 socket system driver # vat VAT compatibility audio driver (requires snd*) # -# $Id: MAKEDEV,v 1.47 1994/11/02 06:36:42 phk Exp $ +# $Id: MAKEDEV,v 1.48 1994/11/10 02:32:29 phk Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin: @@ -395,9 +395,9 @@ cd*|mcd*) case $unit in 0|1|2|3|4|5|6) mknod ${name}${unit}a b $blk `expr $unit '*' 8 + 0` - mknod ${name}${unit}d b $blk `expr $unit '*' 8 + 3` + mknod ${name}${unit}c b $blk `expr $unit '*' 8 + 2` mknod r${name}${unit}a c $chr `expr $unit '*' 8 + 0` - mknod r${name}${unit}d c $chr `expr $unit '*' 8 + 3` + mknod r${name}${unit}c c $chr `expr $unit '*' 8 + 2` chgrp operator ${name}${unit}[a-h] r${name}${unit}[a-h] chmod 640 ${name}${unit}[a-h] r${name}${unit}[a-h] ;;