Editing Boot ISO With Grub
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.
The edit can be undone.
Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 23: | Line 23: | ||
In /etc/grub.d/40_custom add: | In /etc/grub.d/40_custom add: | ||
− | <pre>menuentry | + | <pre>menuentry "GNU Radio Linux (ISO)" { |
− | set isofile= | + | set isofile="/gnuradio.iso" |
loopback loop (hd1,4)$isofile | loopback loop (hd1,4)$isofile | ||
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram noprompt noeject | linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram noprompt noeject | ||
Line 33: | Line 33: | ||
You most likely need to tweak the grub entry. | You most likely need to tweak the grub entry. | ||
<pre> | <pre> | ||
− | set isofile= | + | set isofile="/gnuradio.iso" |
</pre> | </pre> | ||
This is the path relative to the partition, where your ISO file is stored. I named the ISO something simple, so it's easy to update, without the need to update grub. | This is the path relative to the partition, where your ISO file is stored. I named the ISO something simple, so it's easy to update, without the need to update grub. |