[Qemu-devel] Compile fix for win32

2006-09-04 Thread Kazu
Hi, A patch below fixes compile for win32. Regards, Kazu Index: block-raw.c === RCS file: /sources/qemu/qemu/block-raw.c,v retrieving revision 1.10 diff -u -r1.10 block-raw.c --- block-raw.c 3 Sep 2006 12:08:37 - 1.10 +++ block-

[Qemu-devel] block-vvfat RW patch

2006-09-04 Thread Roger Lathrop
Attached patch fixes 3 issues I found while trying to write files from guest to a vfat drive using this configuration: Host: Windows XP (NTFS) Guest: DOS 5 (yeah, really!) Compiler: gcc version 3.4.2 (mingw-special) Qemu Version: 0.8.2 Command line: qemu -hdb fat:rw:c:\dev\qemu\work... Probl

Re: [Qemu-devel] MIPS host

2006-09-04 Thread Thiemo Seufer
[EMAIL PROTECTED] wrote: > Greetings all, > > Has anyone managed to compile qemu-arm for a MIPS linux host? AFAIK nobody did. It shouldn't be tremendously hard to make it work. > I have successfully built and used qemu to execute an ARM linux > application using qemu-arm on an x86 linux host. >

[Qemu-devel] Sparc serial/mouse fixes

2006-09-04 Thread Blue Swirl
Hi, The first patch by Igor Kovalenko implements the mouse protocol. The second one fixes an annoying bug when there is serial output and input at the same time, serial may hang. It's easy to demonstrate: Boot Debian 3.1r1 CD in nographic mode, at the language selection menu press and hold 'd

Re: [Qemu-devel] Is there a way to install Minix 2.0.4 on my own image file?

2006-09-04 Thread Neo
Vincent Palatin wrote: But for minix 2.0.4, I cannot map the USR.MNX to the fda while the ROOT.MNX is mapped to it. You can change the floppy disk image later during the boot process by using qemu monitor. * enter qemu monitor (probably Ctrl-Alt-1) * change the floppy using the following

Re: [Qemu-devel] Re: esd audio output patch and debuging.

2006-09-04 Thread Peter Oberndorfer
On Monday 04 September 2006 14:01, Christophe Fillot wrote: > Peter Oberndorfer a e'crit : > > > > > > if (info->sign) { > > -memset (buf, 0x00, len << info->shift); > > +memset (buf, len << info->shift, 0x00); > > } > > else { > > if (info->bits == 8) { > >

Re: [Qemu-devel] Re: esd audio output patch and debuging.

2006-09-04 Thread malc
On Mon, 4 Sep 2006, Peter Oberndorfer wrote: On Monday 04 September 2006 00:33, malc wrote: Frederick Reeve solace.info> writes: Hello. [..snip..]      if (info->sign) { -        memset (buf, 0x00, len << info->shift); +        memset (buf, len << info->shift, 0x00);      }      else {

Re: [Qemu-devel] Re: esd audio output patch and debuging.

2006-09-04 Thread Christophe Fillot
Peter Oberndorfer a e'crit : if (info->sign) { -memset (buf, 0x00, len << info->shift); +memset (buf, len << info->shift, 0x00); } else { if (info->bits == 8) { -memset (buf, 0x80, len << info->shift); +memset (buf, len << info->sh

Re: [Qemu-devel] Re: esd audio output patch and debuging.

2006-09-04 Thread Peter Oberndorfer
On Monday 04 September 2006 00:33, malc wrote: > Frederick Reeve solace.info> writes: > > > > > Hello. > > > > [..snip..] > > > > > Now, I would not have you thinking this patch is a ready to go. I > > am writing this email because I am having a little trouble with > > this. It outputs soun