Re: [Qemu-devel] qemu Makefile.target vl.h hw/cuda.c hw/grackle_...

2007-11-01 Thread J. Mayer
On Thu, 2007-11-01 at 23:13 +0100, J. Mayer wrote: > On Thu, 2007-11-01 at 21:53 +0200, Blue Swirl wrote: > > On 11/1/07, Blue Swirl <[EMAIL PROTECTED]> wrote: > > > On 10/29/07, Jocelyn Mayer <[EMAIL PROTECTED]> wrote: > > > > CVSROOT:/sources/qemu > > > > Module name:qemu > > > > Cha

Re: [Qemu-devel] qemu Makefile.target vl.h hw/cuda.c hw/grackle_...

2007-11-01 Thread J. Mayer
On Thu, 2007-11-01 at 21:53 +0200, Blue Swirl wrote: > On 11/1/07, Blue Swirl <[EMAIL PROTECTED]> wrote: > > On 10/29/07, Jocelyn Mayer <[EMAIL PROTECTED]> wrote: > > > CVSROOT:/sources/qemu > > > Module name:qemu > > > Changes by: Jocelyn Mayer 07/10/28 23:42:18 > > > > > > Modifi

Re: [Qemu-devel] Shared VNC sessions

2007-11-01 Thread Daniel P. Berrange
On Thu, Nov 01, 2007 at 03:49:42PM -0600, Felipe Sanchez wrote: > > > Hi, in older versions of the RFB patch it was possible to connect multiple > VNC clients to the VNC framebuffer. With the current VNC support if I have > one connected client then any other trying to connect will block until

[Qemu-devel] Shared VNC sessions

2007-11-01 Thread Felipe Sanchez
Hi, in older versions of the RFB patch it was possible to connect multiple VNC clients to the VNC framebuffer. With the current VNC support if I have one connected client then any other trying to connect will block until the first one disconnects. After a quick look at vnc.c it seems that t

Re: [Qemu-devel] qemu Makefile.target vl.h hw/cuda.c hw/grackle_...

2007-11-01 Thread Blue Swirl
On 11/1/07, Blue Swirl <[EMAIL PROTECTED]> wrote: > On 10/29/07, Jocelyn Mayer <[EMAIL PROTECTED]> wrote: > > CVSROOT:/sources/qemu > > Module name:qemu > > Changes by: Jocelyn Mayer 07/10/28 23:42:18 > > > > Modified files: > > . : Makefile.target vl.h > >

Re: [Qemu-devel] qemu Makefile.target vl.h hw/cuda.c hw/grackle_...

2007-11-01 Thread Blue Swirl
On 10/29/07, Jocelyn Mayer <[EMAIL PROTECTED]> wrote: > CVSROOT:/sources/qemu > Module name:qemu > Changes by: Jocelyn Mayer 07/10/28 23:42:18 > > Modified files: > . : Makefile.target vl.h > hw : cuda.c grackle_pci.c heathrow_pic.c ppc.c >

[Qemu-devel] qemu/slirp misc.h tcp_subr.c

2007-11-01 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/11/01 19:23:52 Modified files: slirp : misc.h tcp_subr.c Log message: Fix slirp compilation failure when using a newer gcc CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/slirp/mis

Re: [Qemu-devel] [PATCH] Fix compilation bug in slirp code

2007-11-01 Thread Blue Swirl
On 11/1/07, Stefan Weil <[EMAIL PROTECTED]> wrote: > Hi, > > tcpemu is a global variable (declared in slirp/misc.h). > A later "static" declaration raises a compilation error > with newer gcc versions. The patch fixes the declaration > in slirp/tcp_subr.c. The only user outside tcp_subr.c in misc.

Re: [Qemu-devel] qemu vl.c vl.h hw/an5206.c hw/etraxfs.c hw/inte...

2007-11-01 Thread J. Mayer
On Thu, 2007-11-01 at 01:01 +0100, andrzej zaborowski wrote: > Hi, > > On 31/10/2007, J. Mayer <[EMAIL PROTECTED]> wrote: > > > > On Wed, 2007-10-31 at 11:22 +0100, J. Mayer wrote: > > > On Wed, 2007-10-31 at 11:01 +0100, andrzej zaborowski wrote: > > > > On 31/10/2007, J. Mayer <[EMAIL PROTECTED

Re: [Qemu-devel] Re: qemu LICENSE

2007-11-01 Thread Stefan Weil
Fabrice, did you consider adding the kqemu source code to Qemu's CVS repository? It won't make the repository much bigger, and it helps people working with CVS... Regards Stefan consul schrieb: > Thanks, Fabrice for opening the kqemu. > > "Fabrice Bellard" <[EMAIL PROTECTED]> wrote in message >

Re: [Qemu-devel] [PATCH] Add TPM support

2007-11-01 Thread Thomas Bleher
* Thiemo Seufer <[EMAIL PROTECTED]> [2007-10-31 17:14]: > Thomas Bleher wrote: > > * Thiemo Seufer <[EMAIL PROTECTED]> [2007-10-31 13:54]: > > > Thomas Bleher wrote: > > > > --- /dev/null > > > > +++ b/hw/tpm.c > > > > @@ -0,0 +1,219 @@ > > > > +/* > > > > + * TPM emulation > > > > + * Written by T

[Qemu-devel] [PATCH] Fix compilation bug in slirp code

2007-11-01 Thread Stefan Weil
Hi, tcpemu is a global variable (declared in slirp/misc.h). A later "static" declaration raises a compilation error with newer gcc versions. The patch fixes the declaration in slirp/tcp_subr.c. Regards Stefan Index: slirp/tcp_subr.c ===

Re: [Qemu-devel] [Patch] Fix compiler warnings

2007-11-01 Thread Stefan Weil
I send an update of the patch for current QEMU CVS HEAD in the hope that it will be integrated in CVS... Stefan Stefan Weil schrieb: > Hello, > > this patch fixes some compiler warnings in two QEMU source files: > > * missing include unistd.h for syscall > > * comparision of unsigned value with -

Re: [Qemu-devel] How to split vl.h

2007-11-01 Thread andrzej zaborowski
Hi, On 01/11/2007, Stefan Weil <[EMAIL PROTECTED]> wrote: > Fabrice Bellard schrieb: > > Blue Swirl wrote: > >> Hi, > >> > >> With the automatic dependency rule installed, modifying vl.h causes > >> all files to be recompiled. This is of course the correct action, but > >> it's a major slowdown fo

Re: [Qemu-devel] How to split vl.h

2007-11-01 Thread Stefan Weil
Fabrice Bellard schrieb: > Blue Swirl wrote: >> Hi, >> >> With the automatic dependency rule installed, modifying vl.h causes >> all files to be recompiled. This is of course the correct action, but >> it's a major slowdown for development too. > There must be an option in the Makefile to disable t

Re: [Qemu-devel] qemu-arm fails with newer libc

2007-11-01 Thread Felipe Contreras
On 10/29/07, Hans J. Koch <[EMAIL PROTECTED]> wrote: > I'm trying to set up an environment where I can use a command like > > qemu-arm -L /path/to/root-file-system my_program > > I tried qemu from latest Debian unstable, and couldn't make it work. I > then downloaded the latest snapshot (qemu-snaps

Re: [Qemu-devel] qemu/target-arm helper.c

2007-11-01 Thread andrzej zaborowski
On 01/11/2007, Matthew Warton <[EMAIL PROTECTED]> wrote: > Could you please let me know when you merge this patch into that tree > so that we can update our simulator and forget about the patch? Done, r3316. Regards

Re: [Qemu-devel] How to split vl.h

2007-11-01 Thread Fabrice Bellard
Blue Swirl wrote: > Hi, > > With the automatic dependency rule installed, modifying vl.h causes > all files to be recompiled. This is of course the correct action, but > it's a major slowdown for development too. There must be an option in the Makefile to disable the automatic dependency check.