From owner-freebsd-bugs Mon Aug 7 4:40:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15CA637BDB4 for ; Mon, 7 Aug 2000 04:40:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA59127; Mon, 7 Aug 2000 04:40:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 7 Aug 2000 04:40:07 -0700 (PDT) Message-Id: <200008071140.EAA59127@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: conf/20436: Can't make only cd0 under 4.1-STABLE Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/20436; it has been noted by GNATS. From: Sheldon Hearn To: Andre Albsmeier 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