From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ld8tz-0003LX-Mt for qemu-devel@nongnu.org; Fri, 27 Feb 2009 15:01:43 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ld8ty-0003Kv-I1 for qemu-devel@nongnu.org; Fri, 27 Feb 2009 15:01:42 -0500 Received: from [199.232.76.173] (port=36329 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ld8ty-0003Kg-79 for qemu-devel@nongnu.org; Fri, 27 Feb 2009 15:01:42 -0500 Received: from savannah.gnu.org ([199.232.41.3]:40602 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 1Ld8tx-0006z5-Lr for qemu-devel@nongnu.org; Fri, 27 Feb 2009 15:01:41 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Ld8tw-0002jN-RP for qemu-devel@nongnu.org; Fri, 27 Feb 2009 20:01:40 +0000 Received: from aliguori by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Ld8tw-0002jI-Aw for qemu-devel@nongnu.org; Fri, 27 Feb 2009 20:01:40 +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:01:40 +0000 Subject: [Qemu-devel] [6648] Do not enable a default virtio console 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: 6648 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6648 Author: aliguori Date: 2009-02-27 20:01:39 +0000 (Fri, 27 Feb 2009) Log Message: ----------- Do not enable a default virtio console This upsets Windows installs and right now, virtio console isn't very useful as a default device. Signed-off-by: Anthony Liguori Modified Paths: -------------- trunk/vl.c Modified: trunk/vl.c =================================================================== --- trunk/vl.c 2009-02-27 19:54:01 UTC (rev 6647) +++ trunk/vl.c 2009-02-27 20:01:39 UTC (rev 6648) @@ -4691,8 +4691,7 @@ parallel_devices[i] = NULL; parallel_device_index = 0; - virtio_consoles[0] = "vc:80Cx24C"; - for(i = 1; i < MAX_VIRTIO_CONSOLES; i++) + for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) virtio_consoles[i] = NULL; virtio_console_index = 0; @@ -5305,8 +5304,6 @@ parallel_devices[0] = "null"; if (strncmp(monitor_device, "vc", 2) == 0) monitor_device = "stdio"; - if (virtio_console_index == 0) - virtio_consoles[0] = "null"; } #ifndef _WIN32