From 87e90861a753db56267e756dbc47ec3e200b160c Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 18 Mar 2020 15:58:18 -0400 Subject: [PATCH] grub: extend boot prompt timeout to 5 seconds At 1 second it's almost impossible to catch the boot prompt if you need to change the kernel command line parameters. Let's extend it to 5 seconds so users have a fighting chance to catch the prompt. This follows from a similar change made to the Live ISO: https://github.com/coreos/fedora-coreos-config/pull/281 --- src/grub.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grub.cfg b/src/grub.cfg index 61b594bfcc..4ca5a5f56d 100644 --- a/src/grub.cfg +++ b/src/grub.cfg @@ -33,11 +33,11 @@ terminal_input serial console terminal_output serial console if [ x$feature_timeout_style = xy ] ; then set timeout_style=menu - set timeout=1 + set timeout=5 # Fallback normal timeout code in case the timeout_style feature is # unavailable. else - set timeout=1 + set timeout=5 fi # Determine if this is a first boot and set the ${ignition_firstboot} variable