From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1BFSLN-0004ty-48 for qemu-devel@nongnu.org; Mon, 19 Apr 2004 02:33:25 -0400 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1BFS9e-0001G8-FX for qemu-devel@nongnu.org; Mon, 19 Apr 2004 02:21:51 -0400 Received: from [203.190.192.17] (helo=wasp.net.au) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BFS8H-0008SX-EJ for qemu-devel@nongnu.org; Mon, 19 Apr 2004 02:19:53 -0400 Message-ID: <40836FD5.4020308@wasp.net.au> Date: Mon, 19 Apr 2004 10:21:09 +0400 From: Brad Campbell MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] VNC server 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 G'day all, Just an idea I thought of while trying to install win2k on one machine remotely over a wireless link. Instead of outputting to SDL, how difficult would it be to output to VNC as an option. On another note, I have been playing with win2k installs on a couple of machines, and I can get it to install completely if I set nics=0 in pc.c, disable the SB16 and apply these two hunks to last nights cvs if (!(s->ar_index & 0x20)) { /* output is disabled */ printf("VGA: vga_update_display not updating due to display disabled\n"); return; } Then in vga_draw_text (sorry, no line numbers since my vga.c doesn't match yours in that respect), around 90 lines into it just before the cy loop starts, try the following: if (height * width >= CH_ATTR_SIZE) { printf("TMN: Saving VGA from crashing in vga_draw_text()\n"); return; } -nics=0 returns something along the lines of "Invalid number of nics" so I have to patch hw/pc.c instead Having said that it boots to a black screen that's dead and in safe mode it boots to a missing dll. It is getting there however. (Testing continues) Regards, Brad