From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LfJSl-0002U9-V9 for qemu-devel@nongnu.org; Thu, 05 Mar 2009 14:42:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LfJSl-0002Tx-Az for qemu-devel@nongnu.org; Thu, 05 Mar 2009 14:42:35 -0500 Received: from [199.232.76.173] (port=48545 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LfJSl-0002Tu-5S for qemu-devel@nongnu.org; Thu, 05 Mar 2009 14:42:35 -0500 Received: from savannah.gnu.org ([199.232.41.3]:38623 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LfJSj-0003rA-Tb for qemu-devel@nongnu.org; Thu, 05 Mar 2009 14:42:34 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1LfJSj-0002Vu-Ba for qemu-devel@nongnu.org; Thu, 05 Mar 2009 19:42:33 +0000 Received: from aliguori by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1LfJSi-0002Vo-Us for qemu-devel@nongnu.org; Thu, 05 Mar 2009 19:42:33 +0000 MIME-Version: 1.0 Errors-To: aliguori Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Anthony Liguori Message-Id: Date: Thu, 05 Mar 2009 19:42:32 +0000 Subject: [Qemu-devel] [6697] monitor: Use reasonable default virtual console size (Jan Kiszka) Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 6697 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6697 Author: aliguori Date: 2009-03-05 19:42:30 +0000 (Thu, 05 Mar 2009) Log Message: ----------- monitor: Use reasonable default virtual console size (Jan Kiszka) If a target uses a tiny display (like the MusicPal), the default monitor is currently set to the same size. Fix this by applying the same defaults like already used serial and virtio consoles. Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori Modified Paths: -------------- branches/stable_0_10_0/vl.c Modified: branches/stable_0_10_0/vl.c =================================================================== --- branches/stable_0_10_0/vl.c 2009-03-05 19:42:19 UTC (rev 6696) +++ branches/stable_0_10_0/vl.c 2009-03-05 19:42:30 UTC (rev 6697) @@ -4696,7 +4696,7 @@ kernel_cmdline = ""; cyls = heads = secs = 0; translation = BIOS_ATA_TRANSLATION_AUTO; - monitor_device = "vc"; + monitor_device = "vc:80Cx24C"; serial_devices[0] = "vc:80Cx24C"; for(i = 1; i < MAX_SERIAL_PORTS; i++)