Date: Mon, 7 Aug 2000 04:40:07 -0700 (PDT) From: Sheldon Hearn <sheldonh@uunet.co.za> To: freebsd-bugs@FreeBSD.org Subject: Re: conf/20436: Can't make only cd0 under 4.1-STABLE Message-ID: <200008071140.EAA59127@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/20436; it has been noted by GNATS.
From: Sheldon Hearn <sheldonh@uunet.co.za>
To: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
Cc: FreeBSD-gnats-submit@FreeBSD.ORG
Subject: Re: conf/20436: Can't make only cd0 under 4.1-STABLE
Date: Mon, 07 Aug 2000 13:37:47 +0200
On Sat, 05 Aug 2000 22:21:42 +0200, Andre Albsmeier wrote:
> It is not possible to make only cd0.
Actually, I think that the correct fix is probably something more like
this. However, I wouldn't want to commit this without seeing what
impact it has on a release.
Ciao,
Sheldon.
Index: MAKEDEV
===================================================================
RCS file: /home/ncvs/src/etc/MAKEDEV,v
retrieving revision 1.266
diff -u -d -r1.266 MAKEDEV
--- MAKEDEV 2000/07/30 16:18:48 1.266
+++ MAKEDEV 2000/08/07 11:37:09
@@ -803,7 +803,7 @@
fi
if [ "${units}" -le 31 ]; then
i=0
- while [ $i -le $units ]; do
+ while [ $i -lt $units ]; do
dname=$name$i
rm -rf ${dname}* r${dname}*
mknod ${dname}a c $chr $(($i * 8)) root:operator
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200008071140.EAA59127>
