Blue-on-white (matching pics/tuxflotte-beschriftet-schatten.svg's brand color rgb(52,101,164)) instead of GRUB's default white-on-black. The logo image itself doesn't work here: classic gfxterm always paints an opaque per-character cell background, so a background_image gets fully covered by color_normal's background and never becomes visible - confirmed by booting the composited variant in QEMU before dropping it again. Showing the actual logo needs the GRUB theme/gfxmenu engine, which this live ISO doesn't ship (empty /boot/grub2/themes, no x86_64-efi module directory) - not attempted here. The logo fits more naturally on the Plymouth splash or live-desktop wallpaper instead, both already confirmed to render correctly.
48 lines
1.2 KiB
INI
48 lines
1.2 KiB
INI
set default="0"
|
|
|
|
function load_video {
|
|
insmod efi_gop
|
|
insmod efi_uga
|
|
insmod video_bochs
|
|
insmod video_cirrus
|
|
insmod all_video
|
|
}
|
|
|
|
load_video
|
|
set gfxpayload=keep
|
|
insmod gzio
|
|
insmod part_gpt
|
|
insmod ext2
|
|
|
|
set timeout=10
|
|
### END /etc/grub.d/00_header ###
|
|
|
|
search --no-floppy --set=root -l 'Fedora-Cinn-Live-44'
|
|
|
|
insmod gfxterm
|
|
terminal_output gfxterm
|
|
set color_normal=blue/white
|
|
set color_highlight=white/blue
|
|
|
|
### BEGIN /etc/grub.d/10_linux ###
|
|
menuentry 'Tuxflotte Provisioning (automatisch)' --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /boot/x86_64/loader/linux quiet rhgb root=live:CDLABEL=Fedora-Cinn-Live-44 rd.live.image tuxflotte.mode=auto
|
|
initrd /boot/x86_64/loader/initrd
|
|
}
|
|
|
|
menuentry 'Tuxflotte Provisioning (interaktiv)' --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /boot/x86_64/loader/linux quiet rhgb root=live:CDLABEL=Fedora-Cinn-Live-44 rd.live.image tuxflotte.mode=interactive
|
|
initrd /boot/x86_64/loader/initrd
|
|
}
|
|
|
|
menuentry 'Lokales UEFI-System booten' --class hdd --class os {
|
|
insmod part_gpt
|
|
insmod fat
|
|
insmod chain
|
|
|
|
search --no-floppy --file --set=local_efi /EFI/fedora/shimx64.efi
|
|
|
|
chainloader ($local_efi)/EFI/fedora/shimx64.efi
|
|
boot
|
|
}
|