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

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