From 24041714f88d6c30a231a2c74796039e143b7bf7 Mon Sep 17 00:00:00 2001 From: bfg01 <107083062+bfg01@users.noreply.github.com> Date: Thu, 28 Mar 2024 18:38:07 +0000 Subject: [PATCH] Update install-generic.cfg for Fedora Updating for current stable release (Fedora 39 as of this writing). Commenting out the memtest menuentry because it seems no longer present within the ISO... --- mbusb.d/fedora.d/install-generic.cfg | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/mbusb.d/fedora.d/install-generic.cfg b/mbusb.d/fedora.d/install-generic.cfg index 24918440..b09b047a 100644 --- a/mbusb.d/fedora.d/install-generic.cfg +++ b/mbusb.d/fedora.d/install-generic.cfg @@ -5,32 +5,32 @@ for isofile in $isopath/Fedora-*.iso; do if regexp "Live" "$isofile"; then continue; fi submenu "$isoname ->" "$isofile" { iso_path="$2" - _loopback loop "$iso_path" + loopback loop "$iso_path" probe --label --set=cd_label (loop) menuentry "Install Fedora" { bootoptions="iso-scan/filename=$iso_path inst.stage2=hd:LABEL=$cd_label quiet" - linux (loop)/isolinux/vmlinuz $bootoptions - initrd (loop)/isolinux/initrd.img + linux (loop)/images/pxeboot/vmlinuz $bootoptions + initrd (loop)/images/pxeboot/initrd.img } menuentry "Test this media & install Fedora" { bootoptions="iso-scan/filename=$iso_path inst.stage2=hd:LABEL=$cd_label rd.live.check quiet" - linux (loop)/isolinux/vmlinuz $bootoptions - initrd (loop)/isolinux/initrd.img + linux (loop)/images/pxeboot/vmlinuz $bootoptions + initrd (loop)/images/pxeboot/initrd.img } menuentry "Install Fedora in basic graphics mode" { bootoptions="iso-scan/filename=$iso_path inst.stage2=hd:LABEL=$cd_label nomodeset quiet" - linux (loop)/isolinux/vmlinuz $bootoptions - initrd (loop)/isolinux/initrd.img + linux (loop)/images/pxeboot/vmlinuz $bootoptions + initrd (loop)/images/pxeboot/initrd.img } menuentry "Rescue a Fedora system" { - bootoptions="iso-scan/filename=$iso_path inst.stage2=hd:LABEL=$cd_label rescue quiet" - linux (loop)/isolinux/vmlinuz $bootoptions - initrd (loop)/isolinux/initrd.img - } - menuentry "Run a memory test" { - bootoptions="" - linux16 (loop)/isolinux/memtest $bootoptions + bootoptions="iso-scan/filename=$iso_path inst.stage2=hd:LABEL=$cd_label inst.rescue quiet" + linux (loop)/images/pxeboot/vmlinuz $bootoptions + initrd (loop)/images/pxeboot/initrd.img } + #menuentry "Run a memory test" { + # bootoptions="" + # linux16 (loop)/isolinux/memtest $bootoptions + #} } fi done