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
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
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
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
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