Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 May 1996 20:31:29 -0500 (CDT)
From:      Alex Nash <alex@zen.nash.org>
To:        steve@edmweb.com
Cc:        isp@freebsd.org
Subject:   RE: Cyclades Cyclom 8Yo - kernel config and mknod ?
Message-ID:  <199605190131.UAA00638@zen.nash.org>

next in thread | raw e-mail | index | archive | help
> 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



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