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