Re: [Qemu-devel] [BUG] [PATCH] qemu vl.c vl.h

2007-06-11 Thread Stefan Weil
One more correction - I hope this is the last one. Stefan Stefan Weil schrieb: > I'm sorry for sending a wrong patch. Here is a corrected version. > Thank you, Thiemo, for your hint. > > Stefan > > Stefan Weil schrieb: >> Removing dumb_display_init introduced a bug for -nographic mode. >> QEMU cr

Re: [Qemu-devel] [BUG] [PATCH] qemu vl.c vl.h

2007-06-11 Thread Stefan Weil
I'm sorry for sending a wrong patch. Here is a corrected version. Thank you, Thiemo, for your hint. Stefan Stefan Weil schrieb: > Removing dumb_display_init introduced a bug for -nographic mode. > QEMU crashs when dpy_update (or dpy_resize) is called, because > the corresponding function pointers

[Qemu-devel] [BUG] [PATCH] qemu vl.c vl.h

2007-06-11 Thread Stefan Weil
Removing dumb_display_init introduced a bug for -nographic mode. QEMU crashs when dpy_update (or dpy_resize) is called, because the corresponding function pointers are zero. The patch adds dumb_display_init again (and declares it static because it is only used locally in vl.c). Stefan Thiemo Se

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

2007-06-11 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook 07/06/11 18:59:36 Modified files: target-arm : translate.c Log message: Fix "blx lr" (Lauro Venancio). CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/target-arm/translate.c?cvsroot=qemu

[Qemu-devel] [ARM patch] fix BLX

2007-06-11 Thread Lauro Ramos Venancio
The attached patch fixes a bug in execution of "blx lr". Current behavior: lr <- pc branch lr Expected behavior: temp <- lr lr <- pc branch temp Lauro Index: target-arm/translate.c === RCS file: /sources/qemu/qemu/target-arm/tran