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

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