]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2008-07-30 Robert Millan <rmh@aybabtu.com>
authorrobertmh <robertmh@localhost>
Tue, 29 Jul 2008 23:29:03 +0000 (23:29 +0000)
committerrobertmh <robertmh@localhost>
Tue, 29 Jul 2008 23:29:03 +0000 (23:29 +0000)
        * term/i386/pc/vga_text.c (grub_console_cls): Use
        grub_console_gotoxy() to go back to beginning of the screen.
        Found by Patrick Georgi <patrick.georgi@coresystems.de>

ChangeLog
term/i386/pc/vga_text.c

index 8d18362d30525d7a4b1f25a62697d23acd8ce6d0..7316a088f4a24df022603f2f01fdb1351bb8ec61 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-07-30  Robert Millan  <rmh@aybabtu.com>
+
+       * term/i386/pc/vga_text.c (grub_console_cls): Use
+       grub_console_gotoxy() to go back to beginning of the screen.
+       Found by Patrick Georgi <patrick.georgi@coresystems.de>
+
 2008-07-29  Christian Franke  <franke@computer.org>
 
        * util/update-grub_lib.in (make_system_path_relative_to_its_root):
index 07a254469a6dbb2ee2502baee497bdc3c9b65eca..58a3c6c2ea42496d9e2294b4eedfed04f95d49c0 100644 (file)
@@ -124,6 +124,7 @@ grub_console_cls (void)
   int i;
   for (i = 0; i < ROWS * COLS; i++)
     ((short *) VGA_TEXT_SCREEN)[i] = ' ' | (grub_console_cur_color << 8);
+  grub_console_gotoxy (0, 0);
 }
 
 void