[Qemu-devel] [PATCH] VLAN and Tap for win32

2006-05-12 Thread Kazu
Hi, VLAN and Tap patches for win32 are updated. I added handling for wait objects. http://www.h7.dion.ne.jp/~qemu-win/download/qemu-0.8.1-vlan.patch http://www.h7.dion.ne.jp/~qemu-win/download/qemu-0.8.1-tap.patch Regards, Kazu ___ Qemu-devel

Re: [Qemu-devel] PATCH: fix bgr color mapping on qemu on Solaris/SPARC

2006-05-12 Thread Dan Sandberg
Fabrice Bellard wrote: Dan Sandberg wrote: Just curious... Are you using an OpenGL directdraw surface for the graphics emulation in Qemu? If not, then consider the benefits: 1. It is much faster than any native graphics 2D/3D primitives like Windows GDI 2: It gives full control over

Re: [Qemu-devel] Re: QEMU 0.8.1 and vnc

2006-05-12 Thread andrzej zaborowski
Hi, On 12/05/06, Troy Benjegerdes [EMAIL PROTECTED] wrote: On Fri, May 05, 2006 at 09:06:20AM -0500, Anthony Liguori wrote: Ben Taylor wrote: I'm seeing quite a few bugs on Qemu 0.8.1 with the vnc feature 1) Sparc based system comes up in distored colors (foreground of a Damn Small linux

Re: [Qemu-devel] Re: QEMU 0.8.1 and vnc

2006-05-12 Thread Ben Taylor
Troy Benjegerdes [EMAIL PROTECTED] wrote: On Fri, May 05, 2006 at 09:06:20AM -0500, Anthony Liguori wrote: Ben Taylor wrote: I'm seeing quite a few bugs on Qemu 0.8.1 with the vnc feature 1) Sparc based system comes up in distored colors (foreground of a Damn Small linux iso

Re: [Qemu-devel] qemu-0.8.1 and Solaris-10

2006-05-12 Thread Ben Taylor
Ishwar Rattan [EMAIL PROTECTED] wrote: I was able to compile the qemu-cvs code with Taylor's patches applied. I did not see a qemu executable? Is it the same as qemu/aprc-softmmu/qemu-system-sparc? When I try to use it it keeps complaining that it can't load::

Re: [Qemu-devel] PATCH: Support for multi-file raw images

2006-05-12 Thread Troy Benjegerdes
On Thu, May 11, 2006 at 02:30:45AM -0400, Ryan Lortie wrote: Hello. Attached is a C file (and small patch) to add support for multi-file raw images to QEMU. The rationale (for me at least) is as follows: I use rsync to backup my home directory. The act of starting up QEMU changes a 20GB

Re: [Qemu-devel] PATCH: fix bgr color mapping on qemu on Solaris/SPARC

2006-05-12 Thread Dan Sandberg
Jamie Lokier wrote: Dan Sandberg wrote: Creating a rectangular direct output area in OpenGL is actually like vitualizing a graphics card. That is what X's XF86DGA (Direct Graphics Adapter) feature does. And I believe SDL already supports XF86DGA when in full screen mode. It is

Re: [Qemu-devel] PATCH: fix bgr color mapping on qemu on Solaris/SPARC

2006-05-12 Thread Jamie Lokier
Dan Sandberg wrote: When the screen is painted the DAC's read from the host video buffer (1600x1200) and interpret it as RGB. Somewhere they hit the left boundary of the separate viewport that you have set up and bang, on the fly they switch to reading 800x600-organized data from the other

Re: [Qemu-devel] PATCH: Support for multi-file raw images

2006-05-12 Thread andrzej zaborowski
Hi there, o If the files comprising the device are deleted (for example) while QEMU is running then this is quite bad. Currently this will result in read/write requests returning -1. Maybe it makes sense to panic and cause QEMU to exit. at the very least, the console should

Re: [Qemu-devel] PATCH: fix bgr color mapping on qemu on Solaris/SPARC

2006-05-12 Thread Paul Brook
Anyway, many people think of OpenGL as just 3D, but it is extremely competent for 2D (given a good driver). That's where your argument falls down. I wouldn't be surprised if even a crappy OpenGL implementation could beat plain GDI. However I'd guess most OpenGL drivers are optimised for common

[Qemu-devel] VNC cross-endian failures

2006-05-12 Thread Troy Benjegerdes
The VNC protocol says the server is is supposed to send the data in the format the client wants, however the current implementation sends vnc data in the server native format. What is the best way to fix this? Using -bgr is not right since that will mess up same-endian clients.

Re: [Qemu-devel] PATCH: Support for multi-file raw images

2006-05-12 Thread Flavio Visentin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ryan Lortie wrote: I use rsync to backup my home directory. The act of starting up QEMU changes a 20GB file on my drive. This causes 20GB of extra copying next time I do backups. OT for qemu, but if you use *rsync*, then only the changed part of

Re: [Qemu-devel] PATCH: Support for multi-file raw images

2006-05-12 Thread Ryan Lortie
On Fri, 2006-12-05 at 22:21 +0200, Flavio Visentin wrote: OT for qemu, but if you use *rsync*, then only the changed part of the file are copied, not all the file. Rsync was written just for this reason, to avoid copying unneccessary unchanged data. But as soon as the modification stamp

Re: [Qemu-devel] VNC cross-endian failures

2006-05-12 Thread Fabrice Bellard
Troy Benjegerdes wrote: The VNC protocol says the server is is supposed to send the data in the format the client wants, however the current implementation sends vnc data in the server native format. What is the best way to fix this? Using -bgr is not right since that will mess up same-endian

Re: [Qemu-devel] VNC cross-endian failures

2006-05-12 Thread Troy Benjegerdes
Much better. I did have one bogon after running xvncview on a big-endian host, closing it, then starting it on a little-endian host that resulted in this from realvnc: Rect too big: 24832x33024 at 8448,16640 exceeds 640x480 main:Rect too big On Sat, May 13, 2006 at 01:02:47AM +0200,

[Qemu-devel] PATCH: enable samba for Solaris

2006-05-12 Thread Ben Taylor
This patch is to allow the onboard samba configuration in qemu to correctly start the samba server on Solaris (It's in a different location than a normal linux system). Bendiff -ruN qemu-orig/vl.c qemu/vl.c --- qemu-orig/vl.c 2006-05-03 18:02:44.0 -0400 +++ qemu/vl.c 2006-05-12

Re: [Qemu-devel] Re: QEMU 0.8.1 and vnc

2006-05-12 Thread Anthony Liguori
Ben Taylor wrote: Troy Benjegerdes [EMAIL PROTECTED] wrote: On Fri, May 05, 2006 at 09:06:20AM -0500, Anthony Liguori wrote: Ben Taylor wrote: I'm seeing quite a few bugs on Qemu 0.8.1 with the vnc feature 1) Sparc based system comes up in distored colors (foreground of a