* grub-core/commands/sleep.c (do_print): Add missing grub_refresh.
Reported by: Jordan Uggla.
This commit is contained in:
parent
34274d0257
commit
967b2b649a
2 changed files with 10 additions and 4 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,9 +1,14 @@
|
|||
2012-05-21 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/commands/sleep.c (do_print): Add missing grub_refresh.
|
||||
Reported by: Jordan Uggla.
|
||||
|
||||
2012-05-21 Jordan Uggla <jordan.uggla@gmail.com>
|
||||
|
||||
* docs/grub.texi Fix documentation of GRUB_HIDDEN_TIMOUNT to match the
|
||||
actual implementation. Specifically, clarify that the grub menu will
|
||||
be displayed for GRUB_TIMOUT seconds after the hidden timeout has
|
||||
passed.
|
||||
* docs/grub.texi Fix documentation of GRUB_HIDDEN_TIMOUNT to match the
|
||||
actual implementation. Specifically, clarify that the grub menu will
|
||||
be displayed for GRUB_TIMOUT seconds after the hidden timeout has
|
||||
passed.
|
||||
|
||||
2012-05-21 Benjamin Herrenschmidt <benh@kernel.crashing.org>
|
||||
|
||||
|
|
|
@ -43,6 +43,7 @@ do_print (int n)
|
|||
/* NOTE: Do not remove the trailing space characters.
|
||||
They are required to clear the line. */
|
||||
grub_printf ("%d ", n);
|
||||
grub_refresh ();
|
||||
}
|
||||
|
||||
/* Based on grub_millisleep() from kern/generic/millisleep.c. */
|
||||
|
|
Loading…
Reference in a new issue