Re: [Qemu-devel] Re: [PATCH] e1000: fix endianness issues

2008-03-12 Thread Hollis Blanchard
On Tue, 2008-03-11 at 23:49 +0100, Aurelien Jarno wrote: On Sat, Mar 08, 2008 at 11:08:48AM -0600, Hollis Blanchard wrote: On Sat, 2008-03-08 at 14:59 +0100, Aurelien Jarno wrote: On Fri, Mar 07, 2008 at 11:23:51AM -0600, Hollis Blanchard wrote: Below is a patch I'm using to fix

Re: [Qemu-devel] Re: [PATCH] e1000: fix endianness issues

2008-03-12 Thread Aurelien Jarno
On Wed, Mar 12, 2008 at 08:52:00AM -0500, Hollis Blanchard wrote: On Tue, 2008-03-11 at 23:49 +0100, Aurelien Jarno wrote: On Sat, Mar 08, 2008 at 11:08:48AM -0600, Hollis Blanchard wrote: On Sat, 2008-03-08 at 14:59 +0100, Aurelien Jarno wrote: On Fri, Mar 07, 2008 at 11:23:51AM -0600,

[Qemu-devel] [PATCH] implement sysrq for the pl011

2008-03-12 Thread Jason Wessel
Implement sysrq for the pl011. This was tested on the ARM Versatile AB + kernel.org 2.6.X kernel. Signed-off-by: Jason Wessel [EMAIL PROTECTED] --- hw/pl011.c | 19 ++- 1 file changed, 18 insertions(+), 1 deletion(-) --- a/hw/pl011.c +++ b/hw/pl011.c @@ -208,7 +208,24 @@

[Qemu-devel] [PATCH] TCG README fixes

2008-03-12 Thread Stuart Brady
Hi, The included patch fixes a few glitches in the TCG README file. Please apply. Cheers, -- Stuart Brady diff -urN qemu-orig/tcg/README qemu-new/tcg/README --- qemu-orig/tcg/README2008-02-04 11:21:46.0 + +++ qemu-new/tcg/README 2008-03-12 19:50:19.0 + @@

[Qemu-devel] vmwarevga regression (broken with two Linux and FreeBSD guests)

2008-03-12 Thread Juergen Lock
Hmm. Looks like the latest vmwarevga commits broke *ix/xorg guests. I tested the 2008-03-11 cvs snapshot with sidux-2008-01-200803010113-nyx_pre1-kde-lite-i386.iso (debian sid based Linux livecd) and FreeSBIE-2.0.1-RELEASE.iso (FreeBSD based livecd), on sidux xorg said: (WW) INVALID MEM

[Qemu-devel] [PATCH] Fix sci irq set when acpi timer about to wrap

2008-03-12 Thread Dor Laor
From 498f162fc9d9fb897c756273c481101a44a220de Mon Sep 17 00:00:00 2001 From: Dor Laor [EMAIL PROTECTED] Date: Thu, 13 Mar 2008 00:11:41 +0200 Subject: [PATCH] Fix sci irq set when acpi timer about to wrap. The acpi timer should generate sci irq when enabled and when bit 23 of the timer counter

Re: [Qemu-devel] [PATCH] mipsnet incorrect device ID fix

2008-03-12 Thread Paul Brook
That's the '' which is wrong here. The string can be accessed with *((uint32_t *)devid). So you can simply use: ret = le32_to_cpu(*((uint32_t *)devid)) No you can't. Even ignoring the aliasing violation, devid might not be sufficiently aligned. Paul

[Qemu-devel] qemu/hw ds1225y.c

2008-03-12 Thread Aurelien Jarno
CVSROOT:/sources/qemu Module name:qemu Changes by: Aurelien Jarno aurel3208/03/13 01:19:15 Modified files: hw : ds1225y.c Log message: Convert from DOS to UNIX format, no code change. CVSWeb URLs:

Re: [Qemu-devel] [4/6] ds1225y nvram: Fix some bugs

2008-03-12 Thread Aurelien Jarno
On Mon, Mar 03, 2008 at 11:45:28AM +0100, Hervé Poussineau wrote: Attached files fixes some problems with nvram emulation: - whole nvram was erased in some conditions - fix out of range accesses - improve speed by keeping contents in memory Sorry to not provide a patch for ds1225y.c, but it

Re: [Qemu-devel] [PATCH] mipsnet incorrect device ID fix

2008-03-12 Thread Aurelien Jarno
On Thu, Mar 13, 2008 at 01:18:46AM +, Paul Brook wrote: That's the '' which is wrong here. The string can be accessed with *((uint32_t *)devid). So you can simply use: ret = le32_to_cpu(*((uint32_t *)devid)) No you can't. Even ignoring the aliasing violation, devid might not

[Qemu-devel] --disable-gfx-check still wants SDL.h?

2008-03-12 Thread David Barrett
Is it possible to compile/run qemu on a system that does not have SDL? I assumed this is what --disable-gfx-check does, but it's still giving me errors (below). The specific error (The error log from compiling the libSDL test is) sounds like it's compiling some sort of test -- is there any

Re: [Qemu-devel] --disable-gfx-check still wants SDL.h?

2008-03-12 Thread Carlo Marcelo Arenas Belon
On Wed, Mar 12, 2008 at 07:24:54PM -0700, David Barrett wrote: Is it possible to compile/run qemu on a system that does not have SDL? ./configure --disable-sdl --disable-gfx-check Carlo