Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jan 2001 17:00:05 -0800 (PST)
From:      Wolfieee <wolfieee@rv1.dynip.com>
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/22695: MAKEDEV has no entry for cfs0, the device needed for  the coda client
Message-ID:  <200101300100.f0U105864112@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/22695; it has been noted by GNATS.

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--
 
 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200101300100.f0U105864112>