]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/commands/sleep.c (do_print): Add missing grub_refresh.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Mon, 21 May 2012 22:02:21 +0000 (00:02 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Mon, 21 May 2012 22:02:21 +0000 (00:02 +0200)
Reported by: Jordan Uggla.

ChangeLog
grub-core/commands/sleep.c

index 57ec95fa217f594521371619d75d061c91c12dd6..92a5f811d9ee1c3ba431e9e4282fd26d4f35cdd7 100644 (file)
--- a/ChangeLog
+++ b/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>
 
index 47aa1bfce2863f7c9edbc982c2e03fc0ec53ec40..98e6280a51f54aed78f974df6ef44b7fc5179cd1 100644 (file)
@@ -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.  */