From owner-freebsd-isp Sat May 18 18:34:39 1996 Return-Path: owner-isp Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id SAA27382 for isp-outgoing; Sat, 18 May 1996 18:34:39 -0700 (PDT) Received: from zen.nash.org (nash.pr.mcs.net [204.95.47.72]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id SAA27373 for ; Sat, 18 May 1996 18:34:35 -0700 (PDT) Received: (from alex@localhost) by zen.nash.org (8.7.5/8.6.12) id UAA00638; Sat, 18 May 1996 20:31:29 -0500 (CDT) Date: Sat, 18 May 1996 20:31:29 -0500 (CDT) Message-Id: <199605190131.UAA00638@zen.nash.org> From: Alex Nash To: steve@edmweb.com Cc: isp@freebsd.org Subject: RE: Cyclades Cyclom 8Yo - kernel config and mknod ? Reply-to: nash@mcs.com Sender: owner-isp@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > I have a Cyclades Cyclom 8Yo in a FreeBSD 2.1.0-RELEASE machine, but I'm > not quite certain about all of the kernel configuration option... So far, > this is what I've figured: > > device cy0 at isa? tty irq 15 iomem 0xd400 iosiz 0x2000 vector cyinter > options "COM_MULTIPORT" You can eliminate COM_MULTIPORT, it doesn't do anything in the Cyclades driver. > What I can't figure is the port and flags for sio2-sio9. Am I correct in > assuming I need to configure sio devices for the Cyclades card? sio is for standard serial devices like COM1, COM2, etc. The Cyclades configuration is completely separate from this. > Also, once I've got the devices compiled in the kernel, how do I make the > device files in /dev ? There doesn't seem to be anything for Cyclades in > the MAKEDEV script. The devices you need to build are cuac[0-7] and ttyc[0-7] (which are the Cyclades versions of cuaa[0-7] and ttyd[0-7] for standard serial ports). To build them, type this: cd /dev for i in 0 1 2 3 4 5 6 7;do ./MAKEDEV ttyc$i cuac$i;done Don't forget to modify /etc/ttys if you have dialup lines. Add lines like: ttyc0 "/usr/libexec/getty std.9600" unknown on insecure ttyc1 "/usr/libexec/getty std.9600" unknown on insecure ... Alex