|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] about vga_endboot logic
Hi all ,
I think the logic of vga_endboot is not correct , if I pass vga=keep
xen will print :
Xen is keeping VGA console.
but if I do not pass keep parmeter xen will not print :
Xen is relinquishing VGA console.
The new logic should be:
void vga_endboot(void)
{
if ( !vgacon_enabled )
return;
printk("Xen is %s VGA console.\n",
vgacon_keep ? "keeping" : "relinquishing");
if ( !vgacon_keep )
vgacon_enabled = 0;
}
just move printk before the second if statement
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] about vga_endboot logic,
余上 <=
|
|
|
|
|