加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0194-00_menu_auto_hide-Use-a-timeout-of-60s-for-menu_show.patch 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
geliwei 提交于 2022-04-13 15:15 . update to grub2-2.02-120.el8.src.rpm
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Hans de Goede <hdegoede@redhat.com>
Date: Tue, 26 Jun 2018 12:44:29 +0200
Subject: [PATCH] 00_menu_auto_hide: Use a timeout of 60s for menu_show_once,
rather then no timeout
On some UEFI systems with fastboot enabled (USB) keyboards don't work at
all, not even when explictly asking for keyboard input.
So lets change the timeout from not set (no timeout) to 60 seconds, so
that on such systems if the menu was requested we continue with the
default choice after 60 seconds.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
util/grub.d/00_menu_auto_hide.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/grub.d/00_menu_auto_hide.in b/util/grub.d/00_menu_auto_hide.in
index a10fe45bb..ca95c0d1c 100644
--- a/util/grub.d/00_menu_auto_hide.in
+++ b/util/grub.d/00_menu_auto_hide.in
@@ -33,7 +33,7 @@ if [ x\$feature_timeout_style = xy ] ; then
unset menu_show_once
save_env menu_show_once
set timeout_style=menu
- unset timeout
+ set timeout=60
elif [ "\${menu_auto_hide}" -a "\${last_boot_ok}" = "1" ]; then
set orig_timeout_style=\${timeout_style}
set orig_timeout=\${timeout}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化