2020-08-12 09:39:25 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Hans de Goede <hdegoede@redhat.com>
|
|
|
|
Date: Thu, 23 Jul 2020 09:27:36 +0200
|
|
|
|
Subject: [PATCH] systemd-integration.sh: Also set old menu_show_once grubenv
|
|
|
|
var
|
|
|
|
|
|
|
|
Downstream RH / Fedora patch for compatibility with old, not (yet)
|
|
|
|
regenerated grub.cfg files which miss the menu_show_once_timeout check.
|
|
|
|
This older grubenv variable leads to a fixed timeout of 60 seconds.
|
|
|
|
|
|
|
|
Note that the new menu_show_once_timeout will overrule these 60 seconds
|
|
|
|
if both are set and the grub.cfg does have the menu_show_once_timeout
|
|
|
|
check.
|
|
|
|
|
|
|
|
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
|
|
---
|
|
|
|
util/systemd/systemd-integration.sh.in | 5 +++++
|
|
|
|
1 file changed, 5 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/util/systemd/systemd-integration.sh.in b/util/systemd/systemd-integration.sh.in
|
2022-03-31 21:21:43 +00:00
|
|
|
index dc1218597..a4c071c5b 100644
|
2020-08-12 09:39:25 +00:00
|
|
|
--- a/util/systemd/systemd-integration.sh.in
|
|
|
|
+++ b/util/systemd/systemd-integration.sh.in
|
|
|
|
@@ -4,3 +4,8 @@ TIMEOUT_USEC=$(cat /run/systemd/reboot-to-boot-loader-menu)
|
|
|
|
TIMEOUT=$(((TIMEOUT_USEC + 500000) / 1000000))
|
|
|
|
|
|
|
|
@grub_editenv@ - set menu_show_once_timeout=$TIMEOUT
|
|
|
|
+
|
|
|
|
+# Downstream RH / Fedora patch for compatibility with old, not (yet)
|
|
|
|
+# regenerated grub.cfg files which miss the menu_show_once_timeout check
|
|
|
|
+# this older grubenv variable leads to a fixed timeout of 60 seconds
|
|
|
|
+@grub_editenv@ - set menu_show_once=1
|