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

6b3c76
From 0baaacf5fdcd3f3dc44ba3ac447d514d1dee2a4c Mon Sep 17 00:00:00 2001
a85e8e
From: Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
a85e8e
Date: Wed, 24 Apr 2013 10:51:48 -0300
6b3c76
Subject: [PATCH 103/261] for ppc, reset console display attr when clear screen
a85e8e
a85e8e
This should fix this bugzilla:
a85e8e
https://bugzilla.redhat.com/show_bug.cgi?id=908519
a85e8e
---
a85e8e
 grub-core/term/terminfo.c | 2 +-
a85e8e
 1 file changed, 1 insertion(+), 1 deletion(-)
a85e8e
a85e8e
diff --git a/grub-core/term/terminfo.c b/grub-core/term/terminfo.c
6b3c76
index f0d3e3deb..7cb7909c8 100644
a85e8e
--- a/grub-core/term/terminfo.c
a85e8e
+++ b/grub-core/term/terminfo.c
a85e8e
@@ -151,7 +151,7 @@ grub_terminfo_set_current (struct grub_term_output *term,
a85e8e
       /* Clear the screen.  Using serial console, screen(1) only recognizes the
a85e8e
        * ANSI escape sequence.  Using video console, Apple Open Firmware
a85e8e
        * (version 3.1.1) only recognizes the literal ^L.  So use both.  */
a85e8e
-      data->cls               = grub_strdup ("?\e[2J");
a85e8e
+      data->cls               = grub_strdup ("?\e[2J\e[m");
a85e8e
       data->reverse_video_on  = grub_strdup ("\e[7m");
a85e8e
       data->reverse_video_off = grub_strdup ("\e[m");
a85e8e
       if (grub_strcmp ("ieee1275", str) == 0)
6b3c76
-- 
6b3c76
2.13.5
6b3c76