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 <crush@charm.land>
34 lines
598 B
INI
34 lines
598 B
INI
set default=0
|
|
set timeout=5
|
|
|
|
# Serial console for demo/validation mode
|
|
serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
|
|
terminal_input serial console
|
|
terminal_output gfxterm serial
|
|
|
|
if [ x$feature_default_font_path = xy ] ; then
|
|
font=unicode
|
|
else
|
|
font=$prefix/unicode.pf2
|
|
fi
|
|
|
|
if loadfont $font ; then
|
|
set gfxmode=800x600
|
|
set gfxpayload=keep
|
|
insmod efi_gop
|
|
insmod efi_uga
|
|
insmod video_bochs
|
|
insmod video_cirrus
|
|
else
|
|
set gfxmode=auto
|
|
insmod all_video
|
|
fi
|
|
|
|
insmod gfxterm
|
|
insmod png
|
|
|
|
source /boot/grub/theme.cfg
|
|
|
|
insmod play
|
|
play 960 440 1 0 4 440 1
|