db7cf3a089
Add some fixes for BLS parsing logic and also make 20-grub.install script to query the relative path of the kernel and initramfs images, so BLS can also work when /boot is not a mount point or is a btrfs subvolume. Also pull some build fixes. Resolves: rhbz#1588184 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
From 8b30fab3c07a9fc8549e404c411b747b960c57b2 Mon Sep 17 00:00:00 2001
|
||
From: Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
|
||
Date: Wed, 24 Apr 2013 10:51:48 -0300
|
||
Subject: [PATCH 066/243] for ppc, reset console display attr when clear screen
|
||
|
||
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
|
||
|
||
Signed-off-by: Peter Jones <pjones@redhat.com>
|
||
---
|
||
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
|
||
index d317efa368d..29df35e6d20 100644
|
||
--- 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");
|
||
+ data->cls = grub_strdup ("\x0c\e[2J\e[m");
|
||
data->reverse_video_on = grub_strdup ("\e[7m");
|
||
data->reverse_video_off = grub_strdup ("\e[m");
|
||
if (grub_strcmp ("ieee1275", str) == 0)
|
||
--
|
||
2.17.1
|
||
|