Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

Add support for SolydXK #178

Open
wants to merge 2 commits into
base: main
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
29 changes: 29 additions & 0 deletions mbusb.d/solyd.d/generic.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
for isofile in $isopath/solyd*.iso; do
if [ -e "$isofile" ]; then
regexp --set=isoname "$isopath/(.*)" "$isofile"
submenu "$isoname ->" "$isofile" {
iso_path="$2"
loopback loop "$iso_path"
menuentry "Start Solyd" {
bootoptions="findiso=$iso_path boot=live config quiet splash"
linux (loop)/live/vmlinuz $bootoptions
initrd (loop)/live/initrd.img
}
menuentry "Start Solyd (safe)" {
bootoptions="findiso=$iso_path boot=live config memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal"
linux (loop)/live/vmlinuz $bootoptions
initrd (loop)/live/initrd.img
}
menuentry "Check the integrity of the medium" {
bootoptions="findiso=$iso_path boot=live verify-checksums"
linux (loop)/live/vmlinuz $bootoptions
initrd (loop)/live/initrd.img
}
menuentry "Memory Diagnostic Tool" {
bootoptions=""
linux16 (loop)/live/memtest86 $bootoptions
}
}
fi
done