[Qemu-devel] [patch] Arm CPU halt support

2005-11-25 Thread Paul Brook
The attached patch implements Arm CPU suspend/halt. Paul === cpu-exec.c == --- cpu-exec.c (revision 1861) +++ cpu-exec.c (local) @@ -274,6 +274,17 @@ return EXCP_HALTED; } } +#elif defined(TARGET_ARM) +i

Re: [Qemu-devel] Re: Arm system emulation

2005-11-25 Thread Paul Brook
> It seems that the sysemu is busylooping - is that currently to be > expected or do I have something misconfigured? Yes. The Wait For Interrupt instruction (aka halt/suspend) is currently implemented as a Nop. I have a followup patch to fix that. Paul _

[Qemu-devel] Re: Arm system emulation

2005-11-25 Thread Antti P Miettinen
Paul Brook <[EMAIL PROTECTED]> writes: > The attached patch implements Arm system emulation. Cool :-) > There's nothing special about these. Just a vanilla 2.6.14 kernel configured > with a serial console and busybox+bash from a Debian arm-linux install. I checked out qemu from CVS, applied you

[Qemu-devel] Add modinfo information [PATCH]

2005-11-25 Thread Shaun Jackman
This patch adds modinfo information to kqemu. Please apply. Please cc me in your reply. Cheers! Shaun 2005-11-25 Shaun Jackman <[EMAIL PROTECTED]> * kqemu-linux.c: Add modinfo information. --- kqemu-linux.c- 2005-11-25 14:28:06.0 -0700 +++ kqemu-linux.c 2005-11-25 1

[Qemu-devel] Re: kqemu: Invalid module format

2005-11-25 Thread Shaun Jackman
The kqemu module wouldn't load because I had compiled the kqemu module using gcc 4.0.2, whereas the kernel had been compiled using gcc 3.4.5. I recompiled the module using gcc 3.4.5 and it worked wonderfully! Cheers, Shaun 2005/11/21, Shaun Jackman <[EMAIL PROTECTED]>: > I compiled kqemu 0.7.2 bu

[Qemu-devel] PPC: booting MacOS X Mini install disk 1

2005-11-25 Thread Pavel Janík
Hi, booting Mac Mini's Mac OS X disk 1 results in: [EMAIL PROTECTED]:~> /tmp/QEMU/bin/qemu-system-ppc -cdrom /dev/cdrom -boot d invalid/unsupported opcode: 02 - 0e - 0c (0b717b1c) 0x05616ed8 1 -- Pavel Janík panic("mother..."); -- 2.2.16 drivers/block/cpqarray.c ___

[Qemu-devel] mouse cursor release - fix for Cocoa

2005-11-25 Thread Joachim Henke
Hi, the current Cocoa frontend in CVS releases the mouse grab every time when Shift, Alt, Ctrl, etc. is pressed. It's a simple fix. The patch below adds the missing braces. Sincerely, Jo. --- qemu-cvs/cocoa.m +++ qemu-jh/cocoa.m @@ -399,8 +399,10 @@ /* release Mou

[Qemu-devel] a tiny bug, exit(1) should read _exit(1)

2005-11-25 Thread Kamo Hiroyasu
I have found an unsuitable use of exit() in net_tun_init(), vl.c. Here is a patch. Kamo Hiroyasu [Kamo is the family name and Hiroyasu the given name.] --- vl.c.orig 2005-11-26 02:23:10.0 +0900 +++ vl.c2005-11-26 02:25:39.0 +0900 @@ -1692,8 +1692,6 @@ static int net_tun

[Qemu-devel] [PATCH] pc: boot sector writes and -kernel

2005-11-25 Thread Magnus Damm
Hello there, This patch adds write support to the overlapping boot sector used by the -kernel command line option. Without the patch, guests booted with -kernel will fail updating boot sector. This results in a fdisk that is unable to update the partition table in the running kernel, but is able