Re: [Qemu-devel] [RFC] sdl: initialize all graphic consoles

2012-02-24 Thread Stefano Stabellini
On Thu, 23 Feb 2012, Anthony Liguori wrote: diff --git a/console.c b/console.c index 135394f..2c413a7 100644 --- a/console.c +++ b/console.c @@ -1376,6 +1376,9 @@ DisplayState *get_displaystate(void) if (!display_state) { dumb_display_init (); } +if

[Qemu-devel] [RFC] sdl: initialize all graphic consoles

2012-02-23 Thread Hervé Poussineau
MIPS Jazz emulation registers two graphical consoles, but second one stays black. This patch repairs it. Other display methods (cocoa, vnc...) also probably require the same kind of fix. --- console.c |3 +++ vl.c | 30 +- 2 files changed, 24

Re: [Qemu-devel] [RFC] sdl: initialize all graphic consoles

2012-02-23 Thread Anthony Liguori
On 02/23/2012 03:39 PM, Hervé Poussineau wrote: MIPS Jazz emulation registers two graphical consoles, but second one stays black. This patch repairs it. Other display methods (cocoa, vnc...) also probably require the same kind of fix. I don't think this is really the right way to solve this