GRUB's PNG reader (grub2 bookworm) fails to load bee-logo.png despite the file being valid RGB 8-bit non-interlaced PNG with minimal chunks. Root cause is a known fragility in GRUB's png.c; exact trigger is unknown. Switch to uncompressed 24-bit TGA which bypasses the PNG parser entirely. tga.mod is already present in the ISO (x86_64-efi/tga.mod). - Convert bee-logo.png → bee-logo.tga (480018 bytes, BGR top-left) - config.cfg: insmod png → insmod tga - theme.txt: bee-logo.png → bee-logo.tga - Document all prior failed attempts in git-bible/grub-bitmap-error.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
32 lines
550 B
INI
32 lines
550 B
INI
set default=0
|
|
set timeout=5
|
|
|
|
if [ x$feature_default_font_path = xy ] ; then
|
|
font=unicode
|
|
else
|
|
font=$prefix/unicode.pf2
|
|
fi
|
|
|
|
if loadfont $font ; then
|
|
set gfxmode=1920x1080,1280x1024,auto
|
|
set gfxpayload=keep
|
|
insmod efi_gop
|
|
insmod efi_uga
|
|
insmod video_bochs
|
|
insmod video_cirrus
|
|
else
|
|
set gfxmode=auto
|
|
insmod all_video
|
|
fi
|
|
|
|
insmod serial
|
|
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
|
|
|
|
insmod gfxterm
|
|
|
|
terminal_input console serial
|
|
terminal_output gfxterm serial
|
|
|
|
insmod tga
|
|
source /boot/grub/theme.cfg
|