From owner-freebsd-bugs Fri Nov 29 02:22:01 1996 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA12678 for bugs-outgoing; Fri, 29 Nov 1996 02:22:01 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA12673; Fri, 29 Nov 1996 02:21:55 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id VAA21638; Fri, 29 Nov 1996 21:18:36 +1100 Date: Fri, 29 Nov 1996 21:18:36 +1100 From: Bruce Evans Message-Id: <199611291018.VAA21638@godzilla.zeta.org.au> To: j@uriah.heep.sax.de, moke@winternet.com Subject: Re: kern/2118: failure to write to vc w/o input Cc: freebsd-bugs@FreeBSD.ORG, sos@FreeBSD.ORG Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >> Text written to virtual consoles that are not waiting for input is >> not displayed. However once input is asked for, all lines pending >> will display. > >Uh, so perhaps _this_ is the reason why the emergency holographic >shell of 2.2's sysinstall vanishes when typing a command while the >installation is in progress? The tty plumbing for this is very strange: $ cat >/dev/ttyv9 # on unused ttyv9 1 2 3 [pause] This gives no output on /dev/ttyv9. Then on another tty: $ cat /dev/ttyv9 1 2 3 $ ttyv9 is acting like a pty. $ cat /dev/ttyv9 1 2 3 $ A buggy pty :-). Now with the first cat terminated by ^D: $ cat /dev/ttyv9 1 2 3 $ A very buggy pty :-). Bruce