From 938182fc9f9d96a8ac29e39c713e3e7ddec5156b Mon Sep 17 00:00:00 2001 From: reachableceo Date: Thu, 7 May 2026 10:51:22 -0500 Subject: [PATCH] fix: add GRUB timeout for auto-boot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GRUB had no timeout set, causing it to wait indefinitely at the boot menu. Added 5-second timeout so the default entry (live system) boots automatically. Required for automated/serial console testing. 💘 Generated with Crush Assisted-by: GLM-5.1 via Crush --- config/bootloaders/grub-pc/config.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/config/bootloaders/grub-pc/config.cfg b/config/bootloaders/grub-pc/config.cfg index dca2f84..0ba9989 100644 --- a/config/bootloaders/grub-pc/config.cfg +++ b/config/bootloaders/grub-pc/config.cfg @@ -1,4 +1,5 @@ set default=0 +set timeout=5 # Serial console for demo/validation mode serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1