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