diff options
author | Leah Rowe <leah@libreboot.org> | 2024-12-04 06:55:48 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-12-04 07:23:51 +0000 |
commit | c038b653ac1fed329c8577df3b19bad8d594c98a (patch) | |
tree | e8dff86e22b55a7ee549e915fee8c7281e631dcc /config/u-boot/i386coreboot | |
parent | 7a6e47c24fe88f44138a8e6e3360fc796445c933 (diff) |
Add auto-boot timeout for U-Boot's bootflow menu
Otherwise, you have to press enter to boot your distro.
With this, a timeout is created. After a number of seconds,
which can be reconfigured, the first option selected will be booted,
when generating a bootflow menu.
The timeout is disabled when you navigate the menu; it only
kicks in if you don't input anything on the keyboard.
More information about how this works is in the U-Boot patches,
within this patch. I've set the timeout to 8 seconds.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'config/u-boot/i386coreboot')
-rw-r--r-- | config/u-boot/i386coreboot/config/default | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/u-boot/i386coreboot/config/default b/config/u-boot/i386coreboot/config/default index d01984d5..ba4fd18b 100644 --- a/config/u-boot/i386coreboot/config/default +++ b/config/u-boot/i386coreboot/config/default @@ -390,6 +390,7 @@ CONFIG_CMD_BOOTM=y CONFIG_CMD_BOOTDEV=y CONFIG_CMD_BOOTFLOW=y CONFIG_CMD_BOOTFLOW_FULL=y +CONFIG_CMD_BOOTFLOW_BOOTDELAY=8 CONFIG_CMD_BOOTMETH=y CONFIG_BOOTM_EFI=y CONFIG_BOOTM_ELF=y |