2018-07-12 14:56:34 +00:00
|
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2013-06-07 18:03:56 +00:00
|
|
|
|
From: Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
|
|
|
|
|
Date: Wed, 24 Apr 2013 10:51:48 -0300
|
2018-07-10 18:39:10 +00:00
|
|
|
|
Subject: [PATCH] for ppc, reset console display attr when clear screen
|
2016-04-05 19:28:47 +00:00
|
|
|
|
|
2018-01-17 22:04:09 +00:00
|
|
|
|
v2: Also use \x0c instead of a literal ^L to make future patches less
|
|
|
|
|
awkward.
|
|
|
|
|
|
|
|
|
|
This should fix this bugzilla:
|
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=908519
|
2016-04-05 19:28:47 +00:00
|
|
|
|
|
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
2013-06-07 18:03:56 +00:00
|
|
|
|
---
|
|
|
|
|
grub-core/term/terminfo.c | 2 +-
|
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
|
|
diff --git a/grub-core/term/terminfo.c b/grub-core/term/terminfo.c
|
2021-03-12 21:54:28 +00:00
|
|
|
|
index cd720080375..44d0b3b19fb 100644
|
2013-06-07 18:03:56 +00:00
|
|
|
|
--- a/grub-core/term/terminfo.c
|
|
|
|
|
+++ b/grub-core/term/terminfo.c
|
|
|
|
|
@@ -151,7 +151,7 @@ grub_terminfo_set_current (struct grub_term_output *term,
|
|
|
|
|
/* Clear the screen. Using serial console, screen(1) only recognizes the
|
|
|
|
|
* ANSI escape sequence. Using video console, Apple Open Firmware
|
|
|
|
|
* (version 3.1.1) only recognizes the literal ^L. So use both. */
|
|
|
|
|
- data->cls = grub_strdup ("\e[2J");
|
2016-04-05 19:28:47 +00:00
|
|
|
|
+ data->cls = grub_strdup ("\x0c\e[2J\e[m");
|
2013-06-07 18:03:56 +00:00
|
|
|
|
data->reverse_video_on = grub_strdup ("\e[7m");
|
|
|
|
|
data->reverse_video_off = grub_strdup ("\e[m");
|
|
|
|
|
if (grub_strcmp ("ieee1275", str) == 0)
|