* 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 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
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);