parent
d8ae873078
commit
89cf0dfd3a
@ -1,2 +1,2 @@
|
|||||||
SOURCES/bootupd-0.2.18-vendor.tar.zstd
|
SOURCES/bootupd-0.2.19-vendor.tar.zstd
|
||||||
SOURCES/bootupd-0.2.18.crate
|
SOURCES/bootupd-0.2.19.crate
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
cca30f4f8451b627534258f7c23fa360cec45b4a SOURCES/bootupd-0.2.18-vendor.tar.zstd
|
c9fc8b2e450c11c8e12fb63b7474cddd009f52e5 SOURCES/bootupd-0.2.19-vendor.tar.zstd
|
||||||
3746d3d9ce696228515b3bc400811c55ec8ae515 SOURCES/bootupd-0.2.18.crate
|
11db1d98620000dccf43a2d645b2020b696ae321 SOURCES/bootupd-0.2.19.crate
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
From 38b971647d126f9c51545553d2a55cc77ff01d08 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Dusty Mabe <dusty@dustymabe.com>
|
|
||||||
Date: Mon, 19 Feb 2024 14:33:17 -0500
|
|
||||||
Subject: [PATCH] grub2: source in a console.cfg file if exists
|
|
||||||
|
|
||||||
This will allow users or distro builders place console settings
|
|
||||||
here that will get picked up on boot. This was discussed as part
|
|
||||||
of https://github.com/coreos/fedora-coreos-tracker/issues/1671
|
|
||||||
---
|
|
||||||
src/grub2/grub-static-pre.cfg | 5 +++++
|
|
||||||
1 file changed, 5 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/src/grub2/grub-static-pre.cfg b/src/grub2/grub-static-pre.cfg
|
|
||||||
index 7784834..9717cfb 100644
|
|
||||||
--- a/src/grub2/grub-static-pre.cfg
|
|
||||||
+++ b/src/grub2/grub-static-pre.cfg
|
|
||||||
@@ -38,6 +38,11 @@ elif [ -s $prefix/grubenv ]; then
|
|
||||||
load_env
|
|
||||||
fi
|
|
||||||
|
|
||||||
+if [ -f $prefix/console.cfg ]; then
|
|
||||||
+ # Source in any GRUB console settings if provided by the user/platform
|
|
||||||
+ source $prefix/console.cfg
|
|
||||||
+fi
|
|
||||||
+
|
|
||||||
if [ x"${feature_menuentry_id}" = xy ]; then
|
|
||||||
menuentry_id_option="--id"
|
|
||||||
else
|
|
||||||
--
|
|
||||||
2.43.0
|
|
||||||
|
|
Loading…
Reference in new issue