2009-07-28 Robert Millan <rmh.grub@aybabtu.com>
* loader/i386/linux.c (grub_cmd_linux): Use ',' rather than ';' as separator for the suggested gfxpayload string (';' collides with the parser and needs escaping).
This commit is contained in:
parent
3bb7abcfbf
commit
388a7c7593
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2009-07-28 Robert Millan <rmh.grub@aybabtu.com>
|
||||
|
||||
* loader/i386/linux.c (grub_cmd_linux): Use ',' rather than ';' as
|
||||
separator for the suggested gfxpayload string (';' collides with the
|
||||
parser and needs escaping).
|
||||
|
||||
2009-07-28 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* loader/i386/multiboot_helper.S (grub_multiboot_backward_relocator):
|
||||
|
|
|
@ -776,7 +776,7 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|||
linux_mode
|
||||
= &linux_vesafb_modes[vid_mode - GRUB_LINUX_VID_MODE_VESA_START];
|
||||
|
||||
grub_sprintf (buf, "%ux%ux%u;%ux%u",
|
||||
grub_sprintf (buf, "%ux%ux%u,%ux%u",
|
||||
linux_vesafb_res[linux_mode->res_index].width,
|
||||
linux_vesafb_res[linux_mode->res_index].height,
|
||||
linux_mode->depth,
|
||||
|
|
Loading…
Reference in a new issue