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

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