2009-04-13 Robert Millan <rmh@aybabtu.com>

* loader/i386/linux.c (grub_cmd_linux): Don't pass `vga=ask' parameter
        to Linux, simply abort telling the user it's no longer supported.
This commit is contained in:
robertmh 2009-04-13 14:38:10 +00:00
parent a547a745a6
commit cba416eb0d
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-04-13 Robert Millan <rmh@aybabtu.com>
* loader/i386/linux.c (grub_cmd_linux): Don't pass `vga=ask' parameter
to Linux, simply abort telling the user it's no longer supported.
2009-04-13 Felix Zielcke <fzielcke@z-51.de>
* util/grub.d/10_freebsd.in: Don't exit if /boot/devices.hints

View file

@ -583,7 +583,10 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
else if (grub_strcmp (val, "ext") == 0)
vid_mode = GRUB_LINUX_VID_MODE_EXTENDED;
else if (grub_strcmp (val, "ask") == 0)
vid_mode = GRUB_LINUX_VID_MODE_ASK;
{
grub_error (GRUB_ERR_BAD_ARGUMENT, "Legacy `ask' parameter no longer supported.");
goto fail;
}
else
vid_mode = (grub_uint16_t) grub_strtoul (val, 0, 0);