load modules before saying welcome
This commit is contained in:
parent
a9b7a540bd
commit
1a5c44303c
1 changed files with 6 additions and 5 deletions
11
kern/main.c
11
kern/main.c
|
@ -152,15 +152,16 @@ grub_main (void)
|
||||||
/* First of all, initialize the machine. */
|
/* First of all, initialize the machine. */
|
||||||
grub_machine_init ();
|
grub_machine_init ();
|
||||||
|
|
||||||
/* Hello. */
|
|
||||||
grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
|
|
||||||
grub_printf ("Welcome to GRUB!\n\n");
|
|
||||||
grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
|
|
||||||
|
|
||||||
/* Load pre-loaded modules and free the space. */
|
/* Load pre-loaded modules and free the space. */
|
||||||
grub_register_exported_symbols ();
|
grub_register_exported_symbols ();
|
||||||
grub_load_modules ();
|
grub_load_modules ();
|
||||||
|
|
||||||
|
/* Hello. */
|
||||||
|
grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
|
||||||
|
grub_printf ("Welcome to GRUB!\n\n");
|
||||||
|
grub_refresh ();
|
||||||
|
grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
|
||||||
|
|
||||||
/* It is better to set the root device as soon as possible,
|
/* It is better to set the root device as soon as possible,
|
||||||
for convenience. */
|
for convenience. */
|
||||||
grub_machine_set_prefix ();
|
grub_machine_set_prefix ();
|
||||||
|
|
Loading…
Add table
Reference in a new issue