1 Description: Remove verbose messages printed before reading configuration
2 In some ways this is awkward because it makes debugging harder, but it's a
3 requirement for a smooth-looking boot process; we may be able to do better in
4 future. Upstream doesn't want this, though.
5 Author: Colin Watson <cjwatson@ubuntu.com>
6 Bug-Ubuntu: https://bugs.launchpad.net/bugs/386922
8 Last-Update: 2011-01-05
10 Index: b/grub-core/kern/main.c
11 ===================================================================
12 --- a/grub-core/kern/main.c
13 +++ b/grub-core/kern/main.c
15 /* First of all, initialize the machine. */
19 - grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
20 - grub_printf ("Welcome to GRUB!\n\n");
21 - grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
23 /* Load pre-loaded modules and free the space. */
24 grub_register_exported_symbols ();
25 #ifdef GRUB_LINKER_HAVE_INIT
26 Index: b/grub-core/kern/rescue_reader.c
27 ===================================================================
28 --- a/grub-core/kern/rescue_reader.c
29 +++ b/grub-core/kern/rescue_reader.c
32 grub_rescue_run (void)
34 - grub_printf ("Entering rescue mode...\n");
39 Index: b/grub-core/normal/menu.c
40 ===================================================================
41 --- a/grub-core/normal/menu.c
42 +++ b/grub-core/normal/menu.c
45 /* Callback invoked immediately before a menu entry is executed. */
47 -notify_booting (grub_menu_entry_t entry,
48 +notify_booting (grub_menu_entry_t entry __attribute__((unused)),
49 void *userdata __attribute__((unused)))
52 - grub_printf_ (N_("Booting \'%s\'"), entry->title);
53 - grub_printf ("\n\n");
56 /* Callback invoked when a default menu entry executed because of a timeout