Re: [Qemu-devel] Support for new target emulator

2009-10-23 Thread Pablo Virolainen
Boyapati, Anitha kirjoitti: Hello, We have a proposal to add support for AVR32 target emulation in Qemu. So far, we are able to build qemu from sources on windows using Mingw. Besides looking at sources for other targets in qemu tar ball, I have gone through docs for information on how to

Re: [Qemu-devel] Qemu forum down again

2008-02-26 Thread Pablo Virolainen
Ottavio Caruso wrote: http://qemu-forum.ipi.fi/ General Error SQL ERROR [ mysql4 ] Lost connection to MySQL server during query [2013] An sql error occurred while fetching this page. Please contact an administrator if this problem persists. I have emailed Pablo but to no avail. Has anybody

Re: [Qemu-devel] qemu-forum.ipi.fi down?

2007-12-18 Thread Pablo Virolainen
Robert Nestor wrote: It seems qemu-forum.ipi.fi is down. Is there an alternate place one can obtain source snapshots or browse the user forums? It should be back online once again (and it has been almost all the time). The reason you haven't been able to reach it was my mistake. When the

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

2007-07-07 Thread Pablo Virolainen
Even Rouault kirjoitti: Error message: phpBB : Critical Error Could not connect to the database Fixed ps. Thanks for the information Pablo

Re: [Qemu-devel] Re: clfs arm problem

2007-02-28 Thread Pablo Virolainen
Rodrigo Vivi kirjoitti: Hi all, I've just noticed that qemu does not has the at() syscalls support implemented yet... Does anyone has a patch that implements these syscalls: .long sys_openat/* 295 */ .long sys_mkdirat .long sys_mknodat .long sys_fchownat .long sys_futimesat .long

[Qemu-devel] Small patch to fix mingw32 build

2007-02-15 Thread Pablo Virolainen
When building windows binary (./configure --enable-mingw32) build fails for following error message. Patch in the attachment. gcc -Wall -O2 -g -fno-strict-aliasing -I. -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -o dyngen.exe dyngen.c dyngen.c: In function `load_object':

Re: [Qemu-devel] Re: hosting the forum

2006-10-04 Thread Pablo Virolainen
more) Qemu snapshot can be found at http://qemu-forum.ipi.fi/qemu-snapshots/ I must thank Nomovok ltd [1] for donating little of my time (yes.. I'm beeing paid) for the Qemu forum hassle. [1] http://nomovok.com/ Pablo Virolainen ___ Qemu-devel

[Qemu-devel] Small note about qemu/target-sh4/op.c

2006-07-18 Thread Pablo Virolainen
- @@ -737,7 +737,7 @@ void OPPROTO op_dec8_rN(void) { -env-gregs[PARAM1] -= 4; +env-gregs[PARAM1] -= 8; RETURN(); } @@ -761,7 +761,7 @@ void OPPROTO op_inc8_rN(void) { -env-gregs[PARAM1] += 4; +env-gregs[PARAM1] += 8; RETURN(); } Pablo Virolainen

Re: [Qemu-devel] Fix for accept

2006-07-14 Thread Pablo Virolainen
Fabrice Bellard wrote: Hi, OK for the bug report, but the fix is not correct because the problem is generic. [get|put]_user() and the other functions should be used everywhere to communicate with the user space and to generate the -EFAULT error if the address is not correct. For that

[Qemu-devel] [PATCH] for some socket operations and trivial compiler warning fix

2006-07-13 Thread Pablo Virolainen
The patch should add support for SO_LINGER, SO_RCVTIMEO, SO_SNDTIMEO, SO_PEERCRED and SO_PEERNAME. Index: linux-user/syscall.c === RCS file: /sources/qemu/qemu/linux-user/syscall.c,v retrieving revision 1.75 diff -u -r1.75