Replaces the Fedora DVD/netinst base with a live-ISO boot chain (root=live:CDLABEL=Fedora-Cinn-Live-44 rd.live.image instead of inst.stage2=/inst.ks=), implementing ADR-0003. The GRUB menu now offers two entries booting the same live image with a tuxflotte.mode=auto/interactive kernel cmdline flag instead of a boot-time kickstart URL - installer.sh will read this flag once it runs inside the live session. scripts/build.sh and scripts/extract.sh now extract the source ISO via `xorriso -osirrox` instead of a loop mount, removing the sudo dependency for local builds. Verified end-to-end in QEMU/KVM: GRUB menu renders both entries, kernel/initrd load correctly, boot proceeds to the live session.
43 lines
1.1 KiB
INI
43 lines
1.1 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'
|
|
|
|
### 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
|
|
}
|