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>
This commit is contained in:
robertmh 2008-07-29 23:29:03 +00:00
parent 2921d33798
commit 4ca049a365
2 changed files with 7 additions and 0 deletions

View file

@ -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):

View 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