From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49742) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBox2-0001Xy-42 for qemu-devel@nongnu.org; Sat, 11 Jun 2016 15:52:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bBowy-0003fm-1B for qemu-devel@nongnu.org; Sat, 11 Jun 2016 15:52:11 -0400 Received: from mail-lf0-x244.google.com ([2a00:1450:4010:c07::244]:33804) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBowx-0003fc-Qe for qemu-devel@nongnu.org; Sat, 11 Jun 2016 15:52:07 -0400 Received: by mail-lf0-x244.google.com with SMTP id k192so8404013lfb.1 for ; Sat, 11 Jun 2016 12:52:07 -0700 (PDT) References: From: "mar.krzeminski" Message-ID: <575C6BE4.7090801@gmail.com> Date: Sat, 11 Jun 2016 21:52:04 +0200 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] qemu -nographics option List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: David Craven , qemu-devel@nongnu.org Hello, Have you try to add chardev device? -chardev stdio,mux=on,id=terminal -serial chardev:terminal I am also not sure if you so many consoles in kernel command line, since you do not want to use any graphic mode. Regards, Marcin W dniu 11.06.2016 o 16:22, David Craven pisze: > Hello qemu devs, > > I previously asked this question on stack overflow but didn't get an > answer, so I thought I'd ask here: > > Stdio doesn't show in qemu with the -nographic option. > This is my qemu invocation. It prints hello world when > using `-serial stdio` but only displays kernel output when > using `-nographic`. (From the docs I gather these two are > mutually exclusive options) > > ``` > qemu-system-arm \ > -kernel zImage \ > -append "\ > console=ttyAMA0,115200 console=tty highres=off console=ttyS0 \ > rdinit=/bin/static-hello \ > panic=1" \ > -initrd rootfs.cpio.gz \ > -dtb vexpress-v2p-ca9.dtb \ > -M vexpress-a9 \ > -m 512 \ > -nographic \ > -no-reboot > ``` > > How do I get this to work with the `-nographic` option? > > David > >