mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-24 22:35:28 +00:00
3b94406a9e
CVE-2020-10713 CVE-2020-14308 CVE-2020-14309 CVE-2020-14310 CVE-2020-14311 CVE-2020-15705 CVE-2020-15706 CVE-2020-15707 Signed-off-by: Peter Jones <pjones@redhat.com>
31 lines
976 B
Diff
31 lines
976 B
Diff
From dce8f564823148a4512e7f15dc97ae5640ed9d5b Mon Sep 17 00:00:00 2001
|
|
From: Javier Martinez Canillas <javierm@redhat.com>
|
|
Date: Wed, 16 Oct 2019 12:16:32 +0200
|
|
Subject: [PATCH 189/237] blscfg: Fix typo for gfxpayload variable name
|
|
|
|
There was a silly typo when setting the environment variable gfxpayload so
|
|
graphics mode wouldn't be preserved on some machines leading to text mode.
|
|
|
|
Resolves: rhbz#1706489
|
|
|
|
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
|
|
---
|
|
grub-core/commands/blscfg.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/grub-core/commands/blscfg.c b/grub-core/commands/blscfg.c
|
|
index 26dbe873fe4..8c6dd91be10 100644
|
|
--- a/grub-core/commands/blscfg.c
|
|
+++ b/grub-core/commands/blscfg.c
|
|
@@ -822,7 +822,7 @@ static void create_entry (struct bls_entry *entry)
|
|
}
|
|
|
|
src = grub_xasprintf ("load_video\n"
|
|
- "set gfx_payload=keep\n"
|
|
+ "set gfxpayload=keep\n"
|
|
"insmod gzio\n"
|
|
"linux %s%s%s%s\n"
|
|
"%s",
|
|
--
|
|
2.26.2
|
|
|