summaryrefslogtreecommitdiffstats
path: root/etc/MAKEDEV
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-11-12 15:48:54 +0000
committerache <ache@FreeBSD.org>1994-11-12 15:48:54 +0000
commitc890ff0027c3475196690cb3282dedbb6e0efb17 (patch)
tree6a26353f6e6671b6aa49ac53f7a9f1869230129a /etc/MAKEDEV
parentaf46a3adabdaf5f7d0a116b69b263c945bd72e2d (diff)
downloadFreeBSD-src-c890ff0027c3475196690cb3282dedbb6e0efb17.zip
FreeBSD-src-c890ff0027c3475196690cb3282dedbb6e0efb17.tar.gz
Wrong raw device was created for cd/mcd: d instead of c
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r--etc/MAKEDEV6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV
index e0b3fb0..cedafb7 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]
;;
OpenPOWER on IntegriCloud