[Qemu-devel] QEMU with smp

2007-02-25 Thread Danny Chieh-Yao, Cheng

Hi all,

I am trying to run QEMU under Windows, but I can't get -smp 2 working. I 
know that QEMU under Windows is still alpha stage, but does anyone know 
if the -smp 2 option works at all under Windows? I am getting the error 
Can't find cpu1 and QEMU just halts.


Thanks,
Danny


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] [PATCH] MIPS FPU dynamic activation, part 1

2007-02-25 Thread Hervé Poussineau
Hi,

This patch remove (most of) the use of the #define MIPS_USES_FPU, and
replaces it with a check of the FP bit in the config1 register.
The only place where MIPS_USES_FPU is still used is when resetting a CPU, to
set (or not) the FP bit.

In a latter patch, this bit may be dynamically enabled according to some
condition, as a command line switch or the CPU model.

Hervé


fpu.diff
Description: Binary data
___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


Re: [Qemu-devel] FreeBSD Support

2007-02-25 Thread andrzej zaborowski

Hi,

On 20/02/07, Christopher Olsen [EMAIL PROTECTED] wrote:

Ok FreeBSD Support round one..

Be gentle this is my first attempt at working with the rest of this
community..

Files it modifies and the reasons are as follows

configure - Adds HOST_FREEBSD type to alter included libraries FreeBSD does
not need -ltr
Makefile.target - Once again uses HOST_FREEBSD to avoid including -ltr


See http://lists.gnu.org/archive/html/qemu-devel/2006-11/msg00166.html
- I believe this is a more appropriate way to select -lrt.

Regards,
Andrew


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] Patch: allow Solaris to use OSS (OpenSound)

2007-02-25 Thread Ben Taylor

As I seem to have hit a wall with the ES1370 driver in qemu not working 
on Solaris, I have modified configure to allow Solaris to use OpenSoundSystems
audio.

Is there any interest in having a default audio setting for SDL so that
you won't have to always put QEMU_SDL_AUDIO=oss before you start 
qemu?

Ben
diff -ruN qemu-ORIG/configure qemu/configure
--- qemu-ORIG/configure	2007-02-15 17:58:18.0 -0500
+++ qemu/configure	2007-02-25 20:26:11.270139000 -0500
@@ -221,6 +221,8 @@
   ;;
   --fmod-inc=*) fmod_inc=$optarg
   ;;
+  --enable-oss) oss=yes
+  ;;
   --enable-mingw32) mingw32=yes ; cross_prefix=i386-mingw32- ; linux_user=no
   ;;
   --disable-slirp) slirp=no
@@ -289,6 +291,7 @@
 echo   --enable-coreaudio   enable Coreaudio audio driver
 echo   --enable-alsaenable ALSA audio driver
 echo   --enable-fmodenable FMOD audio driver
+echo   --enable-oss enable OSS audio driver
 echo   --enabled-dsound enable DirectSound audio driver
 echo   --enable-system  enable all system emulation targets
 echo   --disable-system disable all system emulation targets
@@ -619,6 +622,16 @@
 fmod_support=
 fi
 echo FMOD support  $fmod $fmod_support
+if test $oss = yes; then
+if test $solaris = yes  ! test -f /usr/include/sys/soundcard.h ; then
+echo
+echo Error: /usr/include/sys/soundcard.h not found
+echo Error: You must install OSS to use the oss module
+echo
+exit 1
+fi
+fi
+echo OSS support   $oss
 echo kqemu support $kqemu
 echo Documentation $build_docs
 [ ! -z $uname_release ]  \
___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel