2009-06-29 Robert Millan <rmh.grub@aybabtu.com>
* include/grub/i386/linux.h (GRUB_LINUX_FLAG_QUIET): New macro. * loader/i386/linux.c (grub_cmd_linux): Recognize "quiet" option, and set GRUB_LINUX_FLAG_QUIET appropiately.
This commit is contained in:
parent
02164e1bb7
commit
28333ad04f
3 changed files with 14 additions and 2 deletions
|
@ -820,6 +820,11 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|||
linux_mem_size <<= shift;
|
||||
}
|
||||
}
|
||||
else if (grub_memcmp (argv[i], "quiet", sizeof ("quiet") - 1) == 0)
|
||||
{
|
||||
params->loadflags |= GRUB_LINUX_FLAG_QUIET;
|
||||
}
|
||||
|
||||
|
||||
/* Specify the boot file. */
|
||||
dest = grub_stpcpy ((char *) real_mode_mem + GRUB_LINUX_CL_OFFSET,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue