* grub-core/loader/i386/linux.c (grub_linux_boot): Default to
gfxpayload=keep if cbfb is active.
This commit is contained in:
parent
e343549ca9
commit
1a40f80c98
2 changed files with 15 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/loader/i386/linux.c (grub_linux_boot): Default to
|
||||
gfxpayload=keep if cbfb is active.
|
||||
|
||||
2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/disk/ata.c (grub_ata_real_open): Use grub_error properly.
|
||||
|
|
|
@ -503,7 +503,12 @@ grub_linux_boot (void)
|
|||
#endif
|
||||
grub_free (tmp);
|
||||
}
|
||||
else /* We can't go back to text mode from coreboot fb. */
|
||||
#ifdef GRUB_MACHINE_COREBOOT
|
||||
if (grub_video_get_driver_id () == GRUB_VIDEO_DRIVER_COREBOOT)
|
||||
err = GRUB_ERR_NONE;
|
||||
else
|
||||
#endif
|
||||
{
|
||||
#if ACCEPTS_PURE_TEXT
|
||||
err = grub_video_set_mode (DEFAULT_VIDEO_MODE, 0, 0);
|
||||
|
|
Loading…
Reference in a new issue