mirror of
https://codeberg.org/canoeboot/cbmk.git
synced 2025-07-31 01:42:25 +01:00

Rolled back the recent SeaBIOS revision update, which therefore removes these SeaBIOS patches: * 9029a010 kconfig: fix the check-lxdialog.sh to work with gcc 14+ * 8863cbbd ahci: add controller reset * df9dd418 update pci_pad_mem64 handling * a4fc1845 add romfile_loadbool() * a2725e28 drop acpi tables and hex includes * 35aa9a72 drop obsolete acpi table code * 1b598a1d usb-hid: Support multiple USB HID devices by storing them in a linked list Technically, I need only revert instead to revision df9dd418, but that and the other revisions above contain changes that may possibly cause other breakage. We know the old revision worked, so roll back these 7 SeaBIOS commits. Now I will re-compile the 25.04 release and re-upload it as rev1. This bug was reported on a T420 thinkpad, which Canoeboot doesn't support, but since that AHCI code is fairly generic, and these controllers all so similar, it makes sense to just roll back SeaBIOS on Canoeboot in addition to Libreboot. Therefore, both Libreboot and Canoeboot will both provide a revision release for the 25.04 series. Signed-off-by: Leah Rowe <leah@libreboot.org>
25 lines
784 B
Diff
25 lines
784 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 canoeboot, 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 (_("Canoeboot 25.04 rev1 (GRUB menu): https://canoeboot.org/"));
|
|
if (!msg_formatted)
|
|
return;
|
|
|
|
--
|
|
2.39.5
|
|
|