Subject: Re: Fix: C-Kermit 5a(190) from Columbia works out-of-the-box
To: None <current-users@netbsd.org, port-i386@netbsd.org>
From: Simon J. Gerraty <sjg@zen.void.oz.au>
List: port-i386
Date: 11/17/1994 23:23:01
> I picked up C-Kermit 5a(190) from kermit.columbia.edu, and it works out
> of the box when you say "make netbsd".
>
> I install it suid uucp, group dialer, mode 4555.
>
> kermit.columbia.edu:~ftp/kermit/archives/cku190.tar.gz
If you have trouble getting your modem to hang up, you may need the
following hack is needed to make ^\h actually toggle DTR for a
noticable amount of time. It definitely wasn't doing 500ms
*** ckutio.c.~1~ Sun Nov 13 04:17:05 1994
--- ckutio.c Thu Nov 17 23:14:49 1994
***************
*** 2221,2226 ****
--- 2221,2229 ----
if (tcsetattr(ttyfd,TCSADRAIN,&ttcur) == -1)
debug(F100,"tthang tcsetattr fails","",errno);
msleep(HUPTIME); /* Sleep */
+ #ifdef __NetBSD__
+ sleep(1);
+ #endif
cfsetospeed(&ttcur,spdsav); /* Restore previous speed */
cfsetispeed(&ttcur,spdsavi);
tcsetattr(ttyfd,TCSADRAIN,&ttcur);