grub2/SOURCES/0148-Don-t-clear-screen-whe...

32 lines
1.0 KiB
Diff
Raw Permalink Normal View History

2021-11-03 23:51:46 +00:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Renaud=20M=C3=A9trich?= <rmetrich@redhat.com>
Date: Sat, 23 Nov 2019 16:23:54 +0100
Subject: [PATCH] Don't clear screen when debugging is enabled
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Renaud Métrich <rmetrich@redhat.com>
2023-03-28 09:02:12 +00:00
[rharwood@redhat.com: rebase fuzz]
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
2021-11-03 23:51:46 +00:00
---
2023-03-28 09:02:12 +00:00
grub-core/normal/main.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
2021-11-03 23:51:46 +00:00
diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c
2023-03-28 09:02:12 +00:00
index af9792c963..7de9e4c36d 100644
2021-11-03 23:51:46 +00:00
--- a/grub-core/normal/main.c
+++ b/grub-core/normal/main.c
2023-03-28 09:02:12 +00:00
@@ -215,8 +215,9 @@ grub_normal_init_page (struct grub_term_output *term,
char *msg_formatted;
grub_uint32_t *unicode_msg;
grub_uint32_t *last_position;
-
2021-11-03 23:51:46 +00:00
- grub_term_cls (term);
2023-03-28 09:02:12 +00:00
+
2021-11-03 23:51:46 +00:00
+ if (! grub_debug_is_enabled ())
+ grub_term_cls (term);
2023-03-28 09:02:12 +00:00
msg_formatted = grub_xasprintf (_("GRUB version %s"), PACKAGE_VERSION);
if (!msg_formatted)