Re: [Qemu-devel] Switch to OpenBIOS for Sparc32/64?

2006-06-08 Thread Armistead, Jason
In response to Blue Swirl writing: > So I'll send you a patch that changes the name 'proll.elf' to > 'openbios-builtin.elf' (or maybe it's better to use something like > 'openbios-sparc32', simplifies the code) and a sample OpenBIOS file and > that's it? Fabrice then wrote: > >Good to see that

Re: [Qemu-devel] Windows Vista

2006-06-08 Thread Nigel J. Terry
Christian MICHON wrote: don't you need special acpi features inside qemu/bios, otherwise the iso would not boot ? On 6/8/06, Hetz Ben Hamo <[EMAIL PROTECTED]> wrote: Hi people, Microsoft has released a free download ISO of Windows Vista Beta 2. This Beta will expire at July 1st 2007. Anyone w

Re: [Qemu-devel] Recent patches for qemu block-cow.c etc breaks Win32 build becaus e of fsync()

2006-06-08 Thread Johannes Schindelin
Hi, On Thu, 8 Jun 2006, Paul Brook wrote: > I mean you should add a #define in a header file somewhere (eg. vl.h where > there are already similar things), not do it via a commandline option. You mean something like this? --- vl.h.old2006-06-08 23:58:55.0 +0200 +++ vl.h2006

[Qemu-devel] qemu vl.h

2006-06-08 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook 06/06/08 21:51:27 Modified files: . : vl.h Log message: Win32 build fix. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/vl.h?cvsroot=qemu&r1=1.124&r2=1.125 Patches: Index: vl.

Re: [Qemu-devel] Recent patches for qemu block-cow.c etc breaks Win32 build becaus e of fsync()

2006-06-08 Thread Paul Brook
> > > Why not define it in config-host.mak like this: > > > > > > --- configure.old 2006-06-08 23:06:48.0 +0200 > > > +++ configure 2006-06-08 23:07:10.0 +0200 > > > @@ -102,6 +102,7 @@ > > > ;; > > > MINGW32*) > > > mingw32="yes" > > > +CFLAGS="-Dfsync=_commit" > > > ;; > >

Re: [Qemu-devel] Switch to OpenBIOS for Sparc32/64?

2006-06-08 Thread Fabrice Bellard
Hi, Good to see that you can use OpenBIOS now ! I'll apply your patch ASAP. Regards, Fabrice. Blue Swirl wrote: > So I'll send you a patch that changes the name 'proll.elf' to > 'openbios-builtin.elf' (or maybe it's better to use something like > 'openbios-sparc32', simplifies the code) and a

Re: [Qemu-devel] Recent patches for qemu block-cow.c etc breaks Win32 build becaus e of fsync()

2006-06-08 Thread Johannes Schindelin
Hi, On Thu, 8 Jun 2006, Paul Brook wrote: > > Why not define it in config-host.mak like this: > > > > --- configure.old 2006-06-08 23:06:48.0 +0200 > > +++ configure 2006-06-08 23:07:10.0 +0200 > > @@ -102,6 +102,7 @@ > > ;; > > MINGW32*) > > mingw32="yes" > > +CFLAGS="

Re: [Qemu-devel] Recent patches for qemu block-cow.c etc breaks Win32 build becaus e of fsync()

2006-06-08 Thread Paul Brook
> Why not define it in config-host.mak like this: > > --- configure.old 2006-06-08 23:06:48.0 +0200 > +++ configure 2006-06-08 23:07:10.0 +0200 > @@ -102,6 +102,7 @@ > ;; > MINGW32*) > mingw32="yes" > +CFLAGS="-Dfsync=_commit" > ;; > FreeBSD) > bsd="yes" No. This is what

Re: [Qemu-devel] Recent patches for qemu block-cow.c etc breaks Win32 build becaus e of fsync()

2006-06-08 Thread Christian MICHON
neat and concise! bravos & kudos :) On 6/8/06, Johannes Schindelin <[EMAIL PROTECTED]> wrote: Why not define it in config-host.mak like this: +CFLAGS="-Dfsync=_commit" -- Christian ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nong

Re: [Qemu-devel] Recent patches for qemu block-cow.c etc breaks Win32 build becaus e of fsync()

2006-06-08 Thread Johannes Schindelin
Hi, On Thu, 8 Jun 2006, Armistead, Jason wrote: > #ifndef _WIN32 >fsync(blah); > #else >_commit(blah); > #endif Why not define it in config-host.mak like this: --- configure.old 2006-06-08 23:06:48.0 +0200 +++ configure 2006-06-08 23:07:10.0 +0200 @@ -102,6 +102,

[Qemu-devel] Recent patches for qemu block-cow.c etc breaks Win32 build becaus e of fsync()

2006-06-08 Thread Armistead, Jason
Hi list Looking at the code that was recently added via http://lists.gnu.org/archive/html/qemu-devel/2006-06/msg00025.html There were a lot of fsync() calls made, but this breaks the QEMU build process on Win32 because fsync() is not available. Suggest something like #ifndef _WIN32 fsync(bl

Re: [Qemu-devel] Saving Sparc NVRAM contents between QEMU sessions

2006-06-08 Thread Blue Swirl
Or just make qemu override certain sections of the nvram. I'm assuming there is some sort of structure to the nvram contents, or at least particular areas reserved for/commonly used by the BIOS and the OS. I think a problem with current approach as well as this, is that after system reset, th

Re: [Qemu-devel] Switch to OpenBIOS for Sparc32/64?

2006-06-08 Thread Blue Swirl
> So I'll send you a patch that changes the name 'proll.elf' to > 'openbios-builtin.elf' (or maybe it's better to use something like > 'openbios-sparc32', simplifies the code) and a sample OpenBIOS file and > that's it? Yes. Plus documentation bits. Bonus points if you include a README describin

Re: [Qemu-devel] Windows Vista

2006-06-08 Thread Christian MICHON
don't you need special acpi features inside qemu/bios, otherwise the iso would not boot ? On 6/8/06, Hetz Ben Hamo <[EMAIL PROTECTED]> wrote: Hi people, Microsoft has released a free download ISO of Windows Vista Beta 2. This Beta will expire at July 1st 2007. Anyone who want to download it (3

Re: [Qemu-devel] Saving Sparc NVRAM contents between QEMU sessions

2006-06-08 Thread Paul Brook
On Thursday 08 June 2006 15:31, Blue Swirl wrote: > >Is there any functionality, existing or planned or patched, to save Sparc > >NVRAM contents between QEMU sessions and reload it when QEMU starts up ? > > Currently nvram is used to pass some information from Qemu to BIOS. Some > other mechanism w

RE: [Qemu-devel] Saving Sparc NVRAM contents between QEMU sessions

2006-06-08 Thread Blue Swirl
Is there any functionality, existing or planned or patched, to save Sparc NVRAM contents between QEMU sessions and reload it when QEMU starts up ? Currently nvram is used to pass some information from Qemu to BIOS. Some other mechanism would need to be implemented instead, if nvram contents ca

Re: [Qemu-devel] Saving Sparc NVRAM contents between QEMU sessions

2006-06-08 Thread Johannes Schindelin
Hi, On Thu, 8 Jun 2006, Armistead, Jason wrote: > Is there any functionality, existing or planned or patched, to save Sparc > NVRAM contents between QEMU sessions and reload it when QEMU starts up ? AFICT, no. > Obviously, writing a save / restore function for NVRAM is not terribly > difficult,

[Qemu-devel] Saving Sparc NVRAM contents between QEMU sessions

2006-06-08 Thread Armistead, Jason
Hi Is there any functionality, existing or planned or patched, to save Sparc NVRAM contents between QEMU sessions and reload it when QEMU starts up ? I'm working with some of the others on the OpenBIOS list to try and get QEMU / OpenBIOS to be able to boot SunOS 4 and Solaris It'd be nice if we

Re: [Qemu-devel] Good news for Gentoo Linux users

2006-06-08 Thread Natalia Portillo
I searched in Gentoo Forums, and the link was incorrect, and the correction posted went to a 0.7.2 source and there are some differences. Mine doesnt use FMOD, and works in x86, amd64, ppc and sparc gentoos, however the one in the bugs is only for x86 and amd64. Also mine includes directly the

[Qemu-devel] Windows Vista

2006-06-08 Thread Hetz Ben Hamo
Hi people, Microsoft has released a free download ISO of Windows Vista Beta 2. This Beta will expire at July 1st 2007. Anyone who want to download it (3.3 GB for 32 bit version, 4.4 GB for 64 bit version) can go to: http://www.microsoft.com/windowsvista/getready/preview.mspx It might be fun to

Re: [Qemu-devel] [PATCH] Remove abuse of kernel headers.

2006-06-08 Thread David Woodhouse
On Wed, 2006-06-07 at 23:12 +0100, David Woodhouse wrote: > The _syscallX() macros in the kernel's private headers are not suitable > for use in userspace. This patch switches from abusing those to using > the syscall() function which glibc provides. One more instance... --- qemu-0.8.1/target-i3

Re: [Qemu-devel] Good news for Gentoo Linux users

2006-06-08 Thread Jan Marten Simons
Am Mittwoch, 7. Juni 2006 23:03 schrieb Natalia Portillo: > Hi all, > > I just made an ebuild for Gentoo Linux that directly takes QEMU from CVS > > You can find it out here at http://www.claunia.com/qemu/ in the QEMU > Official OS Support List > It is just after the OS list. > > It does support em