From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ld96O-0004wz-Iw for qemu-devel@nongnu.org; Fri, 27 Feb 2009 15:14:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ld96N-0004v5-8c for qemu-devel@nongnu.org; Fri, 27 Feb 2009 15:14:31 -0500 Received: from [199.232.76.173] (port=53940 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ld96N-0004uv-1e for qemu-devel@nongnu.org; Fri, 27 Feb 2009 15:14:31 -0500 Received: from savannah.gnu.org ([199.232.41.3]:34245 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 1Ld96M-0001Kn-Nt for qemu-devel@nongnu.org; Fri, 27 Feb 2009 15:14:30 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Ld96M-0005L0-8d for qemu-devel@nongnu.org; Fri, 27 Feb 2009 20:14:30 +0000 Received: from aliguori by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Ld96L-0005Kw-T8 for qemu-devel@nongnu.org; Fri, 27 Feb 2009 20:14:30 +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: Fri, 27 Feb 2009 20:14:29 +0000 Subject: [Qemu-devel] [6651] Unify default parallel 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: 6651 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6651 Author: aliguori Date: 2009-02-27 20:14:29 +0000 (Fri, 27 Feb 2009) Log Message: ----------- Unify default parallel console size (Jan Kiszka) Serial and virtio consoles already use 80x24 characters as default size, apply the same to the parallel port consoles. Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori Modified Paths: -------------- trunk/vl.c Modified: trunk/vl.c =================================================================== --- trunk/vl.c 2009-02-27 20:12:36 UTC (rev 6650) +++ trunk/vl.c 2009-02-27 20:14:29 UTC (rev 6651) @@ -4690,7 +4690,7 @@ serial_devices[i] = NULL; serial_device_index = 0; - parallel_devices[0] = "vc:640x480"; + parallel_devices[0] = "vc:80Cx24C"; for(i = 1; i < MAX_PARALLEL_PORTS; i++) parallel_devices[i] = NULL; parallel_device_index = 0;