6b2dd0f
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f4c76c0
From: Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
f4c76c0
Date: Wed, 24 Apr 2013 10:51:48 -0300
31cddd6
Subject: [PATCH] for ppc, reset console display attr when clear screen
0ac23e2
6f1e3d5
v2: Also use \x0c instead of a literal ^L to make future patches less
6f1e3d5
awkward.
6f1e3d5
6f1e3d5
This should fix this bugzilla:
6f1e3d5
https://bugzilla.redhat.com/show_bug.cgi?id=908519
0ac23e2
0ac23e2
Signed-off-by: Peter Jones <pjones@redhat.com>
f4c76c0
---
f4c76c0
 grub-core/term/terminfo.c | 2 +-
f4c76c0
 1 file changed, 1 insertion(+), 1 deletion(-)
f4c76c0
f4c76c0
diff --git a/grub-core/term/terminfo.c b/grub-core/term/terminfo.c
ec4acbb
index d317efa368d..29df35e6d20 100644
f4c76c0
--- a/grub-core/term/terminfo.c
f4c76c0
+++ b/grub-core/term/terminfo.c
f4c76c0
@@ -151,7 +151,7 @@ grub_terminfo_set_current (struct grub_term_output *term,
f4c76c0
       /* Clear the screen.  Using serial console, screen(1) only recognizes the
f4c76c0
        * ANSI escape sequence.  Using video console, Apple Open Firmware
f4c76c0
        * (version 3.1.1) only recognizes the literal ^L.  So use both.  */
f4c76c0
-      data->cls               = grub_strdup ("?\e[2J");
0ac23e2
+      data->cls               = grub_strdup ("\x0c\e[2J\e[m");
f4c76c0
       data->reverse_video_on  = grub_strdup ("\e[7m");
f4c76c0
       data->reverse_video_off = grub_strdup ("\e[m");
f4c76c0
       if (grub_strcmp ("ieee1275", str) == 0)