From owner-freebsd-isp Mon Jul 15 13:54:45 1996 Return-Path: owner-isp Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA12501 for isp-outgoing; Mon, 15 Jul 1996 13:54:45 -0700 (PDT) Received: from shogun.tdktca.com ([206.26.1.21]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA12351 for ; Mon, 15 Jul 1996 13:54:22 -0700 (PDT) Received: from shogun.tdktca.com (daemon@localhost) by shogun.tdktca.com (8.7.2/8.7.2) with ESMTP id PAA18477 for ; Mon, 15 Jul 1996 15:53:35 -0500 (CDT) Received: from fa.tdktca.com (bsd.fa.tdktca.com [163.49.131.129]) by shogun.tdktca.com (8.7.2/8.7.2) with ESMTP id PAA18471 for ; Mon, 15 Jul 1996 15:53:34 -0500 (CDT) Received: (from alex@localhost) by fa.tdktca.com (8.7.5/8.6.12) id PAA03286; Mon, 15 Jul 1996 15:57:23 -0500 (CDT) Date: Mon, 15 Jul 1996 15:57:23 -0500 (CDT) From: Alex Nash To: val@inquo.net cc: freebsd-isp@freebsd.org Subject: Re: embarassing cyclades question In-Reply-To: <199607151659.KAA05110@inquo.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-isp@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 15 Jul 1996 val@inquo.net wrote: > i bought a cyclades 16Ye board for my ISP, and i recompiled the kernel > and rebooted. got the message: > > cy0 irq 11 maddr 0xd4000 msize 8192 on isa > > so i assume it's working fine. Next thing i did was look in MAKEDEV for > cyclades device entries. i also looked in the man page. I must have missed > something becasue i have no idea what major numbers to use or what naming > conventions to call the devices :( > > Btw, i'm running the 2.2-SNAP from May (soon to be upgraded ot the june > version) > > Can someone help me even thought i seem to be blind? The major device number is 48, but really you should just stick with using the MAKEDEV script. The devices you want to make are cuac* and ttyc*. You can do this with: #!/bin/sh cd /dev for i in 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15;do ./MAKEDEV cuac$i ttyc$i done cuac devices are for callout, ttyc for dialup. Alex