Re: [Qemu-devel] qemu-i386 segfaults running "hello world".

2007-06-24 Thread Rob Landley
On Saturday 23 June 2007 07:00:03 Jens Axboe wrote: > > I realize releases are a bit out of fashion, but is there any way to go > > through cvs to track down which checkin broke this stuff? I can do it in > > git, mercurial, or subversion. But cvs isn't really set up for this sort > > of thing...

Re: [Qemu-devel] [PATCH] qemu-i386 segfaults running "hello world".

2007-06-24 Thread Rob Landley
On Saturday 23 June 2007 07:12:39 Stefan Weil wrote: > Rob Landley schrieb: > > Ok, it's a more fundamental problem: > > > > [EMAIL PROTECTED]:/sys$ qemu-i386 > > Segmentation fault (core dumped) > > > > Nothing to do with the program it's trying to run, it segfaults with no > > arguments. > > > >

[Qemu-devel] qemu vl.c target-arm/cpu.h target-arm/helper.c

2007-06-24 Thread Andrzej Zaborowski
CVSROOT:/sources/qemu Module name:qemu Changes by: Andrzej Zaborowski 07/06/24 12:09:49 Modified files: . : vl.c target-arm : cpu.h helper.c Log message: Reset ARM cp15.c1_sys to default values. Fix XScale cp15 accesses. CVSWeb URL

[Qemu-devel] [PATCH] starting qemu vnc session on a pre-allocated port

2007-06-24 Thread Shahar Livne
Hi, I am working on a project that runs many concurrent qemu sessions with vnc. Handling the vnc ports for the different sessions is an issue that also project like qemudo tries to solve. The solution chosen there was to handle a pool of ports and manage them internally. Such a solution ignores

[Qemu-devel] Qemu on Windows: Redirect output to console

2007-06-24 Thread Peter Laursen
Hi everyone, I have downloaded the 0.9.0 version of the Qemu source code and managed to compile it using MinGW and MSYS. But I face a problem with the compiled binary. I am blind and therefore need to redirect the output from the guest OS to a standard Windows console or a software speech synt

[Qemu-devel] qemu/hw ads7846.c spitz.c

2007-06-24 Thread Andrzej Zaborowski
CVSROOT:/sources/qemu Module name:qemu Changes by: Andrzej Zaborowski 07/06/24 13:45:36 Modified files: hw : ads7846.c spitz.c Log message: Make touchscreen calibration values better match the HW. Invert WM8750 GPIO. CVSWeb URLs: http://cvs.sav

Re: [Qemu-devel] [PATCH] starting qemu vnc session on a pre-allocated port

2007-06-24 Thread Anthony Liguori
Shahar Livne wrote: Hi, I am working on a project that runs many concurrent qemu sessions with vnc. Handling the vnc ports for the different sessions is an issue that also project like qemudo tries to solve. The solution chosen there was to handle a pool of ports and manage them internally. S

[Qemu-devel] [PATCH] enable network without dhcp

2007-06-24 Thread higepon
Hi folks, I added a default mac address for a Guest OS which can't send a DHCP request. Without this patch, client_ethaddr at slirp.c variable is 00:00:00:00:00:00, so an ether header dest address is also zero. Tested withc gcc 3.3.6 (Ubuntu 1:3.3.6-13ubuntu2). 2007-06-24 higepon <[EMAIL PROTE

Re: [Qemu-devel] [PATCH] starting qemu vnc session on a pre-allocated port

2007-06-24 Thread Paul Brook
> Currently there is the following vnc option: > -vnc display[start a VNC server on display] > > Adding the following option: > -vnc-socket sd [force VNC server on an already opened Socket Descriptor] > > overrides the new socket opening for the vnc on 5900+display port, and > uses the given s

Re: [Qemu-devel] QEMU License and proprietary hardware

2007-06-24 Thread Paul Brook
On Thursday 21 June 2007, Armbrost Failsafe wrote: > We are looking into using QEMU as the base for a model of a custom system > featuring some custom ASICs. But licensing issues are halting the process > right now. Does anyone know what happens license-wise if we create a model > of proprietary ha

Re: [Qemu-devel] [PATCH] starting qemu vnc session on a pre-allocated port

2007-06-24 Thread Anthony Liguori
Paul Brook wrote: Currently there is the following vnc option: -vnc display[start a VNC server on display] Adding the following option: -vnc-socket sd [force VNC server on an already opened Socket Descriptor] overrides the new socket opening for the vnc on 5900+display port, and uses the g

Re: [Qemu-devel] Qemu on Windows: Redirect output to console

2007-06-24 Thread Stefan Weil
Hi Peter, there already exists a QEMU command line option -nographic which disables graphical output and redirects the first serial port of the emulated machine to the console. With QEMU running Linux in text mode, this works fine - you will "see" the boot messages and can run a shell or any text

Re: [Qemu-devel] [PATCH] starting qemu vnc session on a pre-allocated port

2007-06-24 Thread Shahar Livne
Anthony Liguori wrote: Shahar Livne wrote: Hi, I am working on a project that runs many concurrent qemu sessions with vnc. [..] Adding the following option: -vnc-socket sd [force VNC server on an already opened Socket Descriptor] Just redirect each port to a unique unix domain socket an

Re: [Qemu-devel] [PATCH] starting qemu vnc session on a pre-allocated port

2007-06-24 Thread Anthony Liguori
Shahar Livne wrote: Hi Anthony, Thanks for your comment. The problem with the solution you suggest is that all VNC traffic will be first sent to the unix domain socket, and then copied to the TCP socket. This double work may be acceptable if we're talking about one instance of qemu, but as I

Re: [Qemu-devel] Qemu on Windows: Redirect output to console

2007-06-24 Thread Rob Landley
On Sunday 24 June 2007 09:28:58 Peter Laursen wrote: > I am blind and therefore need to redirect the output from the guest OS > to a standard Windows console or a software speech synthesizer so that > a screen reader will be able to read the output produced. What > functions will I eventually need

Re: [Qemu-devel] Qemu on Windows: Redirect output to console

2007-06-24 Thread Natalia Portillo
Hi Peter, Apart from what Stefan said you, the only way that will be useful for learning graphical operating systems will be having a screen-reader capable of doing OCR of the entire screen, or at least, part of it (the QEMU window). I don't know if there are OCR screen readers but I've heard abo

Re: [Qemu-devel] Qemu on Windows: Redirect output to console

2007-06-24 Thread Luke-Jr
On Sunday 24 June 2007 23:21, Natalia Portillo wrote: > Apart from what Stefan said you, > the only way that will be useful for learning graphical operating > systems will be having a screen-reader capable of doing OCR of the > entire screen, or at least, part of it (the QEMU window). Or perhaps f

Re: [Qemu-devel] sh4: more patches

2007-06-24 Thread Magnus Damm
Hi Thiemo, Thanks for the review and commit help! On 6/22/07, Thiemo Seufer <[EMAIL PROTECTED]> wrote: Magnus Damm wrote: > The patches attached in this email contain the following fixes: > > - sh4: Swap word order when accessing double floats Doesn't this one also depend on the host endiannes