Skip to content

Update live-generic.cfg for Fedora #65

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions mbusb.d/fedora.d/live-generic.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@ for isofile in $isopath/Fedora-*-Live-*.iso; do
regexp --set=isoname "$isopath/(.*)" "$isofile"
submenu "$isoname ->" "$isofile" {
iso_path="$2"
_loopback loop "$iso_path"
loopback loop "$iso_path"
probe --label --set=cd_label (loop)
menuentry "Start Fedora Live" {
bootoptions="iso-scan/filename=$iso_path root=live:CDLABEL=$cd_label rd.live.image quiet"
linux (loop)/isolinux/vmlinuz $bootoptions
initrd (loop)/isolinux/initrd.img
bootoptions="iso-scan/filename=$iso_path root=live:CDLABEL=$cd_label rd.live.image rhgb quiet"
linux (loop)/images/pxeboot/vmlinuz $bootoptions
initrd (loop)/images/pxeboot/initrd.img
}
menuentry "Start Fedora Live in basic graphics mode" {
bootoptions="iso-scan/filename=$iso_path root=live:CDLABEL=$cd_label rd.live.image nomodeset quiet"
linux (loop)/isolinux/vmlinuz $bootoptions
initrd (loop)/isolinux/initrd.img
bootoptions="iso-scan/filename=$iso_path root=live:CDLABEL=$cd_label rd.live.image nomodeset vga=791 rhgb quiet"
linux (loop)/images/pxeboot/vmlinuz $bootoptions
initrd (loop)/images/pxeboot/initrd.img
}
menuentry "Test this media & start Fedora Live" {
bootoptions="iso-scan/filename=$iso_path root=live:CDLABEL=$cd_label rd.live.image rd.live.check quiet"
linux (loop)/isolinux/vmlinuz $bootoptions
initrd (loop)/isolinux/initrd.img
}
menuentry "Run a memory test" {
bootoptions=""
linux16 (loop)/isolinux/memtest $bootoptions
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