diff --git a/ChangeLog b/ChangeLog index 57ec95fa2..92a5f811d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,14 @@ +2012-05-21 Vladimir Serbinenko + + * grub-core/commands/sleep.c (do_print): Add missing grub_refresh. + Reported by: Jordan Uggla. + 2012-05-21 Jordan Uggla - * 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 diff --git a/grub-core/commands/sleep.c b/grub-core/commands/sleep.c index 47aa1bfce..98e6280a5 100644 --- a/grub-core/commands/sleep.c +++ b/grub-core/commands/sleep.c @@ -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. */