summaryrefslogtreecommitdiffstats
path: root/etc/MAKEDEV
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1996-06-07 15:47:15 +0000
committerache <ache@FreeBSD.org>1996-06-07 15:47:15 +0000
commit59e21d0c09f66951f31a52bdb7aa885847d47ae5 (patch)
treec8ebbc74d48db91c4db885a310bf6da25388e7a1 /etc/MAKEDEV
parent9eb8bcf5f7b43415b3930dd048f0b6d7e7ce1948 (diff)
downloadFreeBSD-src-59e21d0c09f66951f31a52bdb7aa885847d47ae5.zip
FreeBSD-src-59e21d0c09f66951f31a52bdb7aa885847d47ae5.tar.gz
IDE cd fixes:
wcd?a is missing wrong partition number was used for wcd?c
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r--etc/MAKEDEV8
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV
index 3d121c0..4dc307b 100644
--- a/etc/MAKEDEV
+++ b/etc/MAKEDEV
@@ -99,7 +99,7 @@
# labpc* National Instrument's Lab-PC and LAB-PC+
# perfmon CPU performance-monitoring counters
#
-# $Id: MAKEDEV,v 1.117 1996/05/02 09:15:57 jkh Exp $
+# $Id: MAKEDEV,v 1.118 1996/05/03 05:37:34 asami Exp $
#
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
@@ -662,8 +662,10 @@ wcd*)
rm -f wcd$unit? rwcd$unit?
case $unit in
0|1|2|3)
- mknod wcd${unit}c b $blk `expr $unit '*' 8 + 0`
- mknod rwcd${unit}c c $chr `expr $unit '*' 8 + 0`
+ mknod wcd${unit}a b $blk `expr $unit '*' 8 + 0`
+ mknod rwcd${unit}a c $chr `expr $unit '*' 8 + 0`
+ mknod wcd${unit}c b $blk `expr $unit '*' 8 + 2`
+ mknod rwcd${unit}c c $chr `expr $unit '*' 8 + 2`
chgrp operator wcd${unit}[a-h] rwcd${unit}[a-h]
chmod 640 wcd${unit}[a-h] rwcd${unit}[a-h]
;;
OpenPOWER on IntegriCloud