[Qemu-devel] qemu vl.c vl.h

2007-04-23 Thread Jocelyn Mayer
CVSROOT:/sources/qemu Module name:qemu Changes by: Jocelyn Mayer 07/04/24 06:52:59 Modified files: . : vl.c vl.h Log message: Add -pflash option to register parallel flash bloc devices. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/vl.c?cvsr

[Qemu-devel] qemu/target-ppc cpu.h exec.h op.c op_helper.c o...

2007-04-23 Thread Jocelyn Mayer
CVSROOT:/sources/qemu Module name:qemu Changes by: Jocelyn Mayer 07/04/24 06:50:21 Modified files: target-ppc : cpu.h exec.h op.c op_helper.c op_helper.h op_mem.h op_template.h translate.c Log message: Code provision for new PowerPC

[Qemu-devel] qemu/target-ppc cpu.h helper.c op.c op_helper.c...

2007-04-23 Thread Jocelyn Mayer
CVSROOT:/sources/qemu Module name:qemu Changes by: Jocelyn Mayer 07/04/24 06:44:14 Modified files: target-ppc : cpu.h helper.c op.c op_helper.c translate_init.c Log message: Improve PowerPC 405 MMU model / share more code for other e

[Qemu-devel] qemu/hw ppc405.h ppc405_uc.c

2007-04-23 Thread Jocelyn Mayer
CVSROOT:/sources/qemu Module name:qemu Changes by: Jocelyn Mayer 07/04/24 06:37:21 Modified files: hw : ppc405.h ppc405_uc.c Log message: PowerPC 405 microcontrollers fixes and improvments: - use target_phys_addr_t for physical addresses / off

[Qemu-devel] qemu/hw ppc.c

2007-04-23 Thread Jocelyn Mayer
CVSROOT:/sources/qemu Module name:qemu Changes by: Jocelyn Mayer 07/04/24 06:32:01 Modified files: hw : ppc.c Log message: PowerPC embedded timers fixes. Improve PowerPC timers debug. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/hw/p

RE: [Qemu-devel] RE: Re: USB problem in QEMU

2007-04-23 Thread Yu, Xiaoyang
The problem I met is that some USB disks will cause the guest OS not responding, and using "usb_add disk:/dev/sda" can fix this problem. For other USB devices, I have not met the same problem. Thanks Xiaoyang -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beha

RE: [Qemu-devel] RE: Re: USB problem in QEMU

2007-04-23 Thread Yu, Xiaoyang
The problem I met is that some USB disks will cause the guest OS not responding, and using "usb_add disk:/dev/sda" can fix this problem. For other USB disks, I have not met the same problem. Thanks Xiaoyang -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [Qemu-devel] SunOS Testing on latest SVN snapshot

2007-04-23 Thread JmH
No different with SS-10. Jason On 24/04/07, Blue Swirl <[EMAIL PROTECTED]> wrote: On 4/23/07, JmH <[EMAIL PROTECTED]> wrote: > With the "enable-interpose" patch to open bios (Thanks Blue Swirl), Qemu can > at least find the bootable potion of the installation media. > > Unfortunately though, t

Re: [Qemu-devel] SunOS Testing on latest SVN snapshot

2007-04-23 Thread Blue Swirl
On 4/23/07, Jonathan Kalbfeld <[EMAIL PROTECTED]> wrote: Now, if I remember correclty about suns, you have to boot the correct slice according to the architecture. It used to be something like one slice for sun4c, one for sun4d, one for sun4m, one for sun4u, etc. Does the openboot32 properly gr

Re: [Qemu-devel] SunOS Testing on latest SVN snapshot

2007-04-23 Thread Jonathan Kalbfeld
Now, if I remember correclty about suns, you have to boot the correct slice according to the architecture. It used to be something like one slice for sun4c, one for sun4d, one for sun4m, one for sun4u, etc. Does the openboot32 properly grab the slice for sun4m? jonathan On 4/23/07, Blue Swirl

Re: [Qemu-devel] SunOS Testing on latest SVN snapshot

2007-04-23 Thread Blue Swirl
On 4/23/07, JmH <[EMAIL PROTECTED]> wrote: With the "enable-interpose" patch to open bios (Thanks Blue Swirl), Qemu can at least find the bootable potion of the installation media. Unfortunately though, the boot doesnt progress very far. I have summarised the results below: Thanks for the repo

Re: [Qemu-devel] Re: [PATCH] x86_64 debug registers for gdb

2007-04-23 Thread Jan Kiszka
Hi again, here is now a version that I tested a bit longer than 5 minutes (it actually helped to nail down a Xenomai kernel bug). The general purpose register mapping for x86_64 was still wrong. I'm now directing the indices through a mapping table because I didn't dare to redefine R_EBX&friends

[Qemu-devel] RE: Re: USB problem in QEMU

2007-04-23 Thread Raúl Sánchez Siles
Yu, Xiaoyang wrote: > I found that using "usb_add disk:/dev/sda" instead of "usb_add host:1.1" > will fix this problem. > > Thanks > Xiaoyang > Thanks But what about devices that are not disks? Regards, -- Raúl Sánchez Siles

RE: [Qemu-devel] Re: USB problem in QEMU

2007-04-23 Thread Yu, Xiaoyang
I found that using "usb_add disk:/dev/sda" instead of "usb_add host:1.1" will fix this problem. Thanks Xiaoyang -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Raúl Sánchez Siles Sent: 2007年4月23日 17:20 To: qemu-devel@nongnu.org Subject: [Qemu-devel]

[Qemu-devel] Re: USB problem in QEMU

2007-04-23 Thread Raúl Sánchez Siles
Raúl Sánchez Siles wrote: > Yu, Xiaoyang wrote: > >> >> >> The USB problem I met is that using some kind of USB disks will cause >> guest OS run extremely slow, while these disks can work properly in host >> OS. It looks like the USB simulation in QEMU is not fully featured, and >> can not hand

Re: [Qemu-devel] Re: [PATCH] x86_64 debug registers for gdb

2007-04-23 Thread Jan Kiszka
Jan Kiszka wrote: > +for (i = 0; i < CPU_NB_REGS; i++) { > +regs->xmm[i][0] = tswap64(&env->xmm_regs[i].XMM_Q(0)); > +regs->xmm[i][1] = tswap64(&env->xmm_regs[i].XMM_Q(1)); > +} Copy&paste nonsense. Corrected version attached. Jan --- gdbstub.c | 118 ++