From owner-freebsd-hackers Sun Mar 31 08:46:46 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id IAA03159 for hackers-outgoing; Sun, 31 Mar 1996 08:46:46 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id IAA03153 for ; Sun, 31 Mar 1996 08:46:41 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id CAA05220; Mon, 1 Apr 1996 02:45:05 +1000 Date: Mon, 1 Apr 1996 02:45:05 +1000 From: Bruce Evans Message-Id: <199603311645.CAA05220@godzilla.zeta.org.au> To: hackers@freebsd.org, mrami@mramirez.sy.yale.edu Subject: Re: line settings for comconsole Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >To further my travail, I attempted to modify sio.c to do the same thing >so I could see the probe messages: >619c619 >< com->it_in.c_iflag = TTYDEF_IFLAG; >--- >> com->it_in.c_iflag = TTYDEF_IFLAG | IXOFF; >621c621 >< com->it_in.c_cflag = TTYDEF_CFLAG | CLOCAL; >--- >> com->it_in.c_cflag = CREAD | CS7 | HUPCL | PARENB | CLOCAL; >This seems to have no effect, even though I would at least expect the >(CS7|PARENB) to clear up the parity errors. What else must I modify, CFCR_8BITS needs to be replaced by (CFCR_7BITS | CFCR_PENAB | CFCR_PEVEN) in siocnopen(). Bruce