Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 Dec 1999 09:18:34 +0100 (CET)
From:      leif@neland.dk
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   conf/15792: Can't make /dev/cd31
Message-ID:  <199912310818.JAA07723@gina.neland.dk>

next in thread | raw e-mail | index | archive | help

>Number:         15792
>Category:       conf
>Synopsis:       can't make /dev/cd31
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Dec 31 00:20:01 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Leif Neland
>Release:        FreeBSD 4.0-CURRENT i386
>Organization:
>Environment:

	Current current

>Description:

	Makedev won't make 32 cd-devices, because
	it complains it won't make more than 32.

>How-To-Repeat:

	cd /dev
	./MAKEDEV cd32

>Fix:

--- MAKEDEV~	Fri Dec 31 09:02:45 1999
+++ MAKEDEV	Fri Dec 31 09:11:04 1999
@@ -763,7 +763,7 @@
 	if [ -z "${units}" -o "${units}" -le 0 ]; then
 		units=1
 	fi
-	if [ "${units}" -le 31 ]; then
+	if [ "${units}" -le 32 ]; then
 		i=0
 		while [ $i -lt $units ]; do
 			dname=$name$i


>Release-Note:
>Audit-Trail:
>Unformatted:


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?199912310818.JAA07723>