2004-10-08 Hollis Blanchard <hollis@penguinppc.org>
* term/powerpc/ieee1275/ieee1275.c (grub_ofconsole_cls): Use an ANSI escape sequence instead of a literal ^L. Also call grub_ofconsole_gotoxy.
This commit is contained in:
parent
9f2220ef28
commit
026fa2f9ef
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2004-10-08 Hollis Blanchard <hollis@penguinppc.org>
|
||||||
|
|
||||||
|
* term/powerpc/ieee1275/ieee1275.c (grub_ofconsole_cls): Use an ANSI
|
||||||
|
escape sequence instead of a literal ^L. Also call
|
||||||
|
grub_ofconsole_gotoxy.
|
||||||
|
|
||||||
2004-10-03 Hollis Blanchard <hollis@penguinppc.org>
|
2004-10-03 Hollis Blanchard <hollis@penguinppc.org>
|
||||||
|
|
||||||
* boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_claim): change
|
* boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_claim): change
|
||||||
|
|
|
@ -222,7 +222,8 @@ static void
|
||||||
grub_ofconsole_cls (void)
|
grub_ofconsole_cls (void)
|
||||||
{
|
{
|
||||||
/* Clear the screen. */
|
/* Clear the screen. */
|
||||||
grub_ofconsole_writeesc ("");
|
grub_ofconsole_writeesc ("\e[2J");
|
||||||
|
grub_gotoxy (0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue