Re: [Qemu-devel] kqemu and udev

2005-06-04 Thread Pascal Terjan
On 6/4/05, Oliver Gerlich [EMAIL PROTECTED] wrote:
 Hello,
 how do i configure udev to create /dev/kqemu on boot? I think this was
 already posted once, but I couldn't find it.
 Currently I have to create /dev/kqemu manually before running Qemu.
There is a patch :
http://lists.gnu.org/archive/html/qemu-devel/2005-02/msg00293.html
You can create a /etc/udev/rules.d/kqemu.rules containing
KERNEL=kqemu, MODE=0666 to have it usable by everybody.


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


[Qemu-devel] qemu monitor.c

2005-06-04 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu
Module name:qemu
Branch: 
Changes by: Fabrice Bellard [EMAIL PROTECTED] 05/06/04 20:15:58

Modified files:
.  : monitor.c 

Log message:
added sum command

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/monitor.c.diff?tr1=1.32tr2=1.33r1=textr2=text



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


[Qemu-devel] qemu ppc-dis.c

2005-06-04 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu
Module name:qemu
Branch: 
Changes by: Fabrice Bellard [EMAIL PROTECTED] 05/06/04 20:34:16

Modified files:
.  : ppc-dis.c 

Log message:
use fprintf_func callback to print code

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/ppc-dis.c.diff?tr1=1.4tr2=1.5r1=textr2=text



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


[Qemu-devel] qemu/target-ppc translate.c

2005-06-04 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu
Module name:qemu
Branch: 
Changes by: Fabrice Bellard [EMAIL PROTECTED] 05/06/04 22:22:27

Modified files:
target-ppc : translate.c 

Log message:
fixed lsw[ix] / stsw[ix] potential exception bug - mtcrf workaround for 
Mac OS X 10.4 - use direct jump at page boundary

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/target-ppc/translate.c.diff?tr1=1.31tr2=1.32r1=textr2=text



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


[Qemu-devel] qemu/target-ppc op.c

2005-06-04 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu
Module name:qemu
Branch: 
Changes by: Fabrice Bellard [EMAIL PROTECTED] 05/06/04 22:19:03

Modified files:
target-ppc : op.c 

Log message:
bctr and blr must ignore the two lsb

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/target-ppc/op.c.diff?tr1=1.16tr2=1.17r1=textr2=text



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


[Qemu-devel] qemu/target-ppc op_helper_mem.h

2005-06-04 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu
Module name:qemu
Branch: 
Changes by: Fabrice Bellard [EMAIL PROTECTED] 05/06/04 22:19:46

Modified files:
target-ppc : op_helper_mem.h 

Log message:
removed dynamic test of traces

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/target-ppc/op_helper_mem.h.diff?tr1=1.4tr2=1.5r1=textr2=text



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


[Qemu-devel] qemu/target-ppc cpu.h

2005-06-04 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu
Module name:qemu
Branch: 
Changes by: Fabrice Bellard [EMAIL PROTECTED] 05/06/04 22:16:41

Modified files:
target-ppc : cpu.h 

Log message:
added temporary osi_call callback

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/target-ppc/cpu.h.diff?tr1=1.17tr2=1.18r1=textr2=text



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


[Qemu-devel] [patch] Allow command in target-list

2005-06-04 Thread Paul Brook
The patch below makes configure --target-list accept a comma separated list of 
targets, as well as a space separated list. This is easier to protect from 
the shell, and more consistent with other configure scripts.

Space separated lists are still accepted as before.

Paul

Index: configure
===
--- configure   (revision 24)
+++ configure   (working copy)
@@ -215,6 +215,8 @@
 if [ $linux = yes ] ; then
 target_list=i386-user arm-user armeb-user sparc-user ppc-user 
$target_list
 fi
+else
+target_list=$(echo $target_list | sed -e 's/,/ /g')
 fi
 
 if test -z $cross_prefix ; then


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