mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-03-25 13:29:03 +02:00
fixes a few regressions in grub, since the 73 cve fixes were merged in rev10 most notably, large files sometimes failed to load in rev10, which caused some linux distros to fail booting if the initramfs file was quite large this release revision only adds GRUB fixes Signed-off-by: Leah Rowe <leah@libreboot.org>
26 lines
797 B
Diff
26 lines
797 B
Diff
From 3fb09986e62a9945862456d5f1d63a6ccba2c861 Mon Sep 17 00:00:00 2001
|
|
From: Leah Rowe <leah@libreboot.org>
|
|
Date: Sat, 19 Nov 2022 16:30:24 +0000
|
|
Subject: [PATCH 02/13] say the name libreboot, in the grub menu
|
|
|
|
---
|
|
grub-core/normal/main.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c
|
|
index 04d058f55..b1cc8f236 100644
|
|
--- a/grub-core/normal/main.c
|
|
+++ b/grub-core/normal/main.c
|
|
@@ -209,7 +209,7 @@ grub_normal_init_page (struct grub_term_output *term,
|
|
|
|
grub_term_cls (term);
|
|
|
|
- msg_formatted = grub_xasprintf (_("GNU GRUB version %s"), PACKAGE_VERSION);
|
|
+ msg_formatted = grub_xasprintf (_("Libreboot 20241206, 11th revision (GRUB menu): https://libreboot.org/"));
|
|
if (!msg_formatted)
|
|
return;
|
|
|
|
--
|
|
2.39.5
|
|
|