Blame SOURCES/0012-for-ppc-reset-console-display-attr-when-clear-screen.patch

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