From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46229) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f8Y15-0003o4-Qt for qemu-devel@nongnu.org; Tue, 17 Apr 2018 17:19:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f8Y14-0000Wg-8q for qemu-devel@nongnu.org; Tue, 17 Apr 2018 17:19:55 -0400 Received: from mail-ot0-x242.google.com ([2607:f8b0:4003:c0f::242]:45087) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f8Y13-0000Rc-VX for qemu-devel@nongnu.org; Tue, 17 Apr 2018 17:19:54 -0400 Received: by mail-ot0-x242.google.com with SMTP id w4-v6so4011752ote.12 for ; Tue, 17 Apr 2018 14:19:53 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <19b7bccd-2282-5c94-fe7c-68f72ccbaba7@amsat.org> References: <20180416181844.7851-1-marcandre.lureau@redhat.com> <20180416184406.GC14488@redhat.com> <19b7bccd-2282-5c94-fe7c-68f72ccbaba7@amsat.org> From: Peter Maydell Date: Tue, 17 Apr 2018 22:19:32 +0100 Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] mux: fix ctrl-a b again List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= Cc: =?UTF-8?Q?Daniel_P=2E_Berrang=C3=A9?= , =?UTF-8?B?TWFyYy1BbmRyw6kgTHVyZWF1?= , qemu-stable , QEMU Developers , Paolo Bonzini On 17 April 2018 at 19:36, Philippe Mathieu-Daud=C3=A9 wr= ote: > Since this commit, the console on the Malta board stay black... > > Before: > $ qemu-system-mips -M malta -m 512 \ > -kernel vmlinux-3.2.0-4-4kc-malta -append 'root=3D/dev/sda1' \ > -nographic > [ 0.000000] Initializing cgroup subsys cpuset > [ 0.000000] Initializing cgroup subsys cpu > [ 0.000000] Linux version 3.2.0-4-4kc-malta > (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) > #1 Debian 3.2.51-1 > [ 0.000000] Config serial console: console=3DttyS0,38400n8r > [ 0.000000] bootconsole [early0] enabled > ... > > After: > $ qemu-system-mips -M malta -m 512 \ > -kernel vmlinux-3.2.0-4-4kc-malta -append 'root=3D/dev/sda1' \ > -nographic > QEMU 2.11.92 monitor - type 'help' for more information > (qemu) QEMU 2.11.92 monitor - type 'help' for more information > (qemu) q I reproed this, and as you can see from the transcripts you give the problem is that the mux is confused about what the active console should be. Before the patch, we correctly start with the serial as the active console and C-a c switches, but afterwards we start out with the monitor active and C-a c doesn't switch. Revert pushed to master. thanks -- PMM