Re: [Qemu-devel] PS/2 mouse support for FC4 guest broken in QEMU 0.9.1

2008-02-03 Thread Even Rouault
Le Sunday 03 February 2008 04:15:52 andrzej zaborowski, vous avez écrit : I have no clue about ps2 but seeing as redirecting the command from kbd to mouse (0 - 1 in the kbd_queue call) fixes the keyboard issue for Gujin, but breaks mouse, the obvious conclusion is that the command should not

Re: [Qemu-devel] PS/2 mouse support for FC4 guest broken in QEMU 0.9.1

2008-01-21 Thread Even Rouault
, On Sun, 20 Jan 2008, Even Rouault wrote: After quite a lot of CVS bisection, [...] Not wanting to advertise git, but to help other people needing to bisect efficiently: here is a recipe how to do this with git. 1. get git (obviously) 2. $ git clone git://repo.or.cz/qemu.git/ (it is a git

Re: [Qemu-devel] PS/2 mouse support for FC4 guest broken in QEMU 0.9.1

2008-01-20 Thread Even Rouault
serio: i8042 KBD PORT at 0x60,0x64 irq 1 Le Sunday 20 January 2008 21:58:05 Even Rouault, vous avez écrit : Hi, I've tried QEMU 0.9.1 and PS/2 mouse support for FC4 guest seems to be broken. I was using previously a CVS version dating back to 2007/09/07 and it works fine with it. It can

Re: [Qemu-devel] QEmu as a Device Software Optimization tool

2007-07-26 Thread Even Rouault
On Thursday 26 July 2007 18:34:36 Paul Borman wrote: Paravirtualization - I have written a device driver for QEmu that   allows the guest system to essentially make function calls right into   the host (dealing with data representation, etc).  A prime example   for use of this is OpenGL.  

[Qemu-devel] [PATCH] Updated version of OpenGL patch on 2007/07/10

2007-07-10 Thread Even Rouault
At http://qemu-forum.ipi.fi/viewtopic.php?t=2984, you'll find an updated version of the OpenGL patch that adds Win32 guest TCP/IP support. See GL_README.txt for use and compilation details. Extract : NEWS * 2007/07/09 :   - Add support of TCP/IP for Win32 guest (see 'How to use it ?' and    

[Qemu-devel] http://qemu-forum.ipi.fi/ is down

2007-07-07 Thread Even Rouault
Error message: phpBB : Critical Error Could not connect to the database

Re: [Qemu-devel] [PATCH] Updated version of OpenGL patch

2007-07-07 Thread Even Rouault
ReactOS : http://www.reactos.org Listen to non-DRMised Music: http://www.jamendo.com - Message d'origine De : Even Rouault [EMAIL PROTECTED] À : qemu-devel@nongnu.org Envoyé le : Mardi, 3 Juillet 2007, 0h06mn 59s Objet : [Qemu-devel] [PATCH] Updated version of OpenGL patch Hi

[Qemu-devel] [PATCH] Experimental patch providing accelerated OpenGL for Linux i386 (update as of 2007-02-28)

2007-02-28 Thread Even Rouault
The patch has been updated and is available at http://qemu-forum.ipi.fi/viewtopic.php?t=2984 Changes/Improvements since second patch version (10 February 2007) -- * Initial support for Windows as a guest (still Linux i386 as a

Re: [Qemu-devel] [PATCH] Experimental patch providing accelerated OpenGL for Linux i386 (update as of 2007-02-28)

2007-02-28 Thread Even Rouault
Le Mercredi 28 Février 2007 22:36, vous avez écrit : The patch has been updated and is available at http://qemu-forum.ipi.fi/viewtopic.php?t=2984 How does this compare to chromium[1] and in particular vmgl[2] ? Any particular reason you're re-inventing the wheel? Paul [1]

Re: [Qemu-devel] [PATCH] Experimental initial patch providing accelerated OpenGL for Linux i386 (2nd attempt to post)

2006-11-18 Thread Even Rouault
Le Jeudi 16 Novembre 2006 23:41, vous avez écrit : My main remark is that the host/guest communication system must be changed and I can help you to implement it. I would prefer to use a PCI device and to avoid any i386 dependent code. For the PCI device, using the Bochs VGA adapter could be a

[Qemu-devel] [PATCH] Experimental initial patch providing accelerated OpenGL for Linux i386 (2nd attempt to post)

2006-11-16 Thread Even Rouault
Here's an attempt of providing accelerated OpenGL for QEMU. I must underline first that it should really really be considered as experimental or a proof-of-concept. There's still a lot of work to do to make it reliable and releasable. So what is it exactly ? - a patch for QEMU itself that

[Qemu-devel] [PATCH] SPARC target : Fix carry flag update in addxcc and subxcc ops

2006-08-20 Thread Even Rouault
I send a patch that should fix a bug in the update of carry flag for addxcc and subxcc instructions when the carry flag is set before the evaluation of the instruction. (the fix is identical to what is done in the similar instruction op_adcl_T0_T1_cc for arm target) ?

[Qemu-devel] bug report : kqemu and self-writing code

2006-05-01 Thread Even Rouault
Guest OS : Linux 2.6.15-1.2054_FC5 i686 (Fedora Core 5 i386) Host OS: Linux 2.6.12-10-amd64-k8 #1 x86_64 (Ubuntu 5.10 amd64) QEMU Version : today CVS compiled with kqemu support KQEMU : 1.3.0pre6 Binary used : qemu-system-x86-64 (so kqemu user-mode is used) I'm running the simple C code attached.

Re: [Qemu-devel] [PATCH] SPARC target : Fix carry flagupdate inaddxcc and subxc

2006-04-13 Thread Even Rouault
Hello, As far as the V flag is concerned, I've taken a look at the Sparc V8 reference manual (www.sparc.org/standards/V8.pdf) We can read at page 170 for the update of the V flag for addcc and addxcc: Vtheory = (r[rs1]31 operand231 !result31) | (!r[rs1]31 !operand231 result31) Let's

[Qemu-devel] [PATCH] Improve linux-user debugging

2005-11-29 Thread Even Rouault
This patch adds the display of syscall names in addition to their numbers in linux-user/syscall.c Index: syscall.c === RCS file: /cvsroot/qemu/qemu/linux-user/syscall.c,v retrieving revision 1.64 diff -u -p -r1.64 syscall.c ---