From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Cpu2o-0004VJ-BX for qemu-devel@nongnu.org; Sat, 15 Jan 2005 14:57:10 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Cpu2j-0004QP-0K for qemu-devel@nongnu.org; Sat, 15 Jan 2005 14:57:05 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Cpu2i-0004QM-O2 for qemu-devel@nongnu.org; Sat, 15 Jan 2005 14:57:04 -0500 Received: from [212.37.0.170] (helo=mail-slave.dataphone.se) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CptWW-0003Xn-Bj for qemu-devel@nongnu.org; Sat, 15 Jan 2005 14:23:48 -0500 From: Magnus Damm Message-Id: <20050115192223.7875.51285.68676@kubu> Date: Sat, 15 Jan 2005 20:23:37 +0100 (CET) Subject: [Qemu-devel] [PATCH] parallel and -nographic 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 Cc: Magnus Damm Hello, The recent parallel port change broke -nographic. Without this patch "qemu -nographic" fails and outputs the following error: qemu: could not open parallel device 'stdio' / magnus Index: vl.c =================================================================== RCS file: /cvsroot/qemu/qemu/vl.c,v retrieving revision 1.116 diff -u -r1.116 vl.c --- vl.c 15 Jan 2005 12:02:56 -0000 1.116 +++ vl.c 15 Jan 2005 19:10:31 -0000 @@ -1033,7 +1033,7 @@ void *fd_opaque; } FDCharDriver; -#define STDIO_MAX_CLIENTS 2 +#define STDIO_MAX_CLIENTS 3 static int stdio_nb_clients; static CharDriverState *stdio_clients[STDIO_MAX_CLIENTS];