From nobody@FreeBSD.ORG  Wed Nov  8 08:50:37 2000
Return-Path: <nobody@FreeBSD.ORG>
Received: by hub.freebsd.org (Postfix, from userid 32767)
	id 37D7F37B4E5; Wed,  8 Nov 2000 08:50:35 -0800 (PST)
Message-Id: <20001108165035.37D7F37B4E5@hub.freebsd.org>
Date: Wed,  8 Nov 2000 08:50:35 -0800 (PST)
From: ingham@i-pi.com
Sender: nobody@FreeBSD.ORG
To: freebsd-gnats-submit@FreeBSD.org
Subject: MAKEDEV has no entry for cfs0, the device needed for the coda client
X-Send-Pr-Version: www-1.0

>Number:         22695
>Category:       conf
>Synopsis:       MAKEDEV has no entry for cfs0, the device needed for the coda client
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Nov 08 09:00:01 PST 2000
>Closed-Date:    Sat Nov 17 16:20:25 PST 2001
>Last-Modified:  Sat Nov 17 16:20:58 PST 2001
>Originator:     Kenneth Ingham
>Release:        4.2-BETA
>Organization:
Kenneth Ingham Consulting
>Environment:
FreeBSD Clarke.i-pi.com 4.2-BETA FreeBSD 4.2-BETA #0: Tue Nov  7 12:45:46 MST 2000     root@Clarke.i-pi.com:/usr/src/sys/compile/CLARKE  i386
>Description:
The instructions for running the venus client say to run venus-setup.
venus-setup runs /dev/MAKEDEV cfs0, but MAKEDEV has no entry for cfs0.

>How-To-Repeat:
Look at MAKEDEV.
>Fix:
I found the major number as 93 in coda_fbsd.c.  I guessed at minor number 0 and made the device manually.


>Release-Note:
>Audit-Trail:

From: Wolfieee <wolfieee@wolf.dyns.cx>
To: freebsd-gnats-submit@FreeBSD.org, ingham@i-pi.com
Cc:  
Subject: Re: ports/22695: MAKEDEV has no entry for cfs0, the device needed for 
 the coda client
Date: Sat, 27 Jan 2001 11:25:19 -0500

 This is a multi-part message in MIME format.
 --------------CBC2ADA30A631467842BCF33
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: 7bit
 
 patch to add cfs to MAKEDEV.
 
 
 -- 
 
 ===
 Unix is like a wigwam -- no Gates, no Windows, and an Apache inside.
 ===
 ---
 Michael Joyner
 Systems Administrator
 mjoyner@rv1.dynip.com
 --------------CBC2ADA30A631467842BCF33
 Content-Type: text/plain; charset=us-ascii;
  name="coda.patch.txt"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline;
  filename="coda.patch.txt"
 
 ===================================================================
 RCS file: RCS/MAKEDEV,v
 retrieving revision 1.1
 retrieving revision 1.2
 diff -c -r1.1 -r1.2
 *** MAKEDEV     2001/01/27 16:05:19     1.1
 --- MAKEDEV     2001/01/27 16:18:27     1.2
 ***************
 *** 1588,1593 ****
 --- 1588,1609 ----
         mknod tw$unit c 19 $unit root:operator
         ;;
 
 + #Start CODA
 + cfs)
 +       sh MAKEDEV cfs0
 +       ;;
 + cfs?)
 +       ncfs=`expr $i : 'cfs\(.*\)'`
 +       unit=0
 +       while [ $unit -le $ncfs ]; do
 +               echo -n "."
 +               mknod cfs$unit c 93 $unit root:operator
 +               unit=$(($unit + 1))
 +       done
 +       echo
 +       ;;
 + #End CODA
 +
   local)
         umask 0                 # XXX should be elsewhere
         sh MAKEDEV.local                     
 
 --------------CBC2ADA30A631467842BCF33--
 
 

From: Wolfieee <wolfieee@rv1.dynip.com>
To: freebsd-gnats-submit@FreeBSD.org, ingham@i-pi.com
Cc:  
Subject: Re: ports/22695: MAKEDEV has no entry for cfs0, the device needed for 
 the coda client
Date: Mon, 29 Jan 2001 19:53:03 -0500

 This is a multi-part message in MIME format.
 --------------84622DDB4AFC8E881B3483DF
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: 7bit
 
 patch to add cfs to MAKEDEV.
 
 
 -- 
 
 ===
 Unix is like a wigwam -- no Gates, no Windows, and an Apache inside.
 ===
 ---
 Michael Joyner
 Systems Administrator
 mjoyner@rv1.dynip.com
 --------------84622DDB4AFC8E881B3483DF
 Content-Type: text/plain; charset=us-ascii;
  name="coda.patch.txt"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline;
  filename="coda.patch.txt"
 
 ===================================================================
 RCS file: RCS/MAKEDEV,v
 retrieving revision 1.1
 retrieving revision 1.2
 diff -c -r1.1 -r1.2
 *** MAKEDEV     2001/01/27 16:05:19     1.1
 --- MAKEDEV     2001/01/27 16:18:27     1.2
 ***************
 *** 1588,1593 ****
 --- 1588,1609 ----
         mknod tw$unit c 19 $unit root:operator
         ;;
 
 + #Start CODA
 + cfs)
 +       sh MAKEDEV cfs0
 +       ;;
 + cfs?)
 +       ncfs=`expr $i : 'cfs\(.*\)'`
 +       unit=0
 +       while [ $unit -le $ncfs ]; do
 +               echo -n "."
 +               mknod cfs$unit c 93 $unit root:operator
 +               unit=$(($unit + 1))
 +       done
 +       echo
 +       ;;
 + #End CODA
 +
   local)
         umask 0                 # XXX should be elsewhere
         sh MAKEDEV.local                     
 
 
 --------------84622DDB4AFC8E881B3483DF--
 
 
Responsible-Changed-From-To: freebsd-ports->freebsd-bugs 
Responsible-Changed-By: markp 
Responsible-Changed-When: Fri Jun 8 02:14:20 PDT 2001 
Responsible-Changed-Why:  
Misfiled PR 

http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22695 
State-Changed-From-To: open->closed 
State-Changed-By: iedowse 
State-Changed-When: Sat Nov 17 16:20:25 PST 2001 
State-Changed-Why:  

Committed (in a slightly simpler form), thanks! 

http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22695 
>Unformatted:
