Subject: Re: Problem with the 3/7 sources.
To: Robert Shady <rls@zeus.id.net>
From: Chris G. Demetriou <cgd@postgres.Berkeley.EDU>
List: current-users
Date: 03/13/1994 06:01:16
>I am having this exact same problem, and it is also preventing me from updating
>to the latest kernel.  Please let me know what you find out.

carrier detect was enabled by default on the modem ports.
This makes things link incoming gettys behave normally.

if you want to use them and there's no carrier apparent, you
have to get them 'stty clocal'd until there is a carrier.

An example of how to do that is:
	sleep 1000 < /dev/tty00 &
	stty -f /dev/tty00 clocal
	tip foo				# foo uses /dev/tty00
when there's carrier:
	~<control-z>
	stty -f /dev/tty00 -clocal
	kill the sleep


cgd

------------------------------------------------------------------------------