From owner-freebsd-hackers Fri Apr 28 00:27:42 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id AAA01698 for hackers-outgoing; Fri, 28 Apr 1995 00:27:42 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id AAA01686 for ; Fri, 28 Apr 1995 00:27:34 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id RAA23190; Fri, 28 Apr 1995 17:25:30 +1000 Date: Fri, 28 Apr 1995 17:25:30 +1000 From: Bruce Evans Message-Id: <199504280725.RAA23190@godzilla.zeta.org.au> To: agl@mac.glas.apc.org, roberto@blaise.ibp.fr Subject: Re: Is there any FAQ on thge serial in FreeBSD? Cc: hackers@FreeBSD.org Sender: hackers-owner@FreeBSD.org Precedence: bulk >> if [ -x /bin/stty ]; then >> /bin/stty -f /dev/cuaia0 57600 crtscts >> /bin/stty -f /dev/cuala0 57600 crtscts >> /bin/stty -f /dev/ttyid0 57600 crtscts hupcl >> /bin/stty -f /dev/ttyld0 57600 crtscts hupcl >Hmm, after inclusion of these lines into rc.local the system panics right >away, that's stock 950412-SNAP... This was broken the day before the SNAP and fixed the day after. Use a dummy open of the tty to avoid the problem: /bin/stty -f /dev/ttyd0 >/dev/null Bruce