Add dionysus

This commit is contained in:
2025-10-10 13:17:09 +02:00
parent 660aa2e2fb
commit f97b03919b
3 changed files with 207 additions and 1 deletions

View File

@@ -241,7 +241,7 @@ configure_new_system() {
wait
}
machines=(ares neptune)
machines=(ares neptune dionysus)
if (($# > 0)); then
machines=("${@}")
fi
@@ -264,6 +264,13 @@ for hostname in "${machines[@]}"; do
"-drive" "if=pflash,format=raw,file=${tmpdir}/efivars.fd"
)
;;
dionysus)
hostqemuopts=(
"-device" "nvme,serial=rootnvme,drive=root"
"-drive" "if=pflash,format=raw,readonly=true,file=/usr/share/edk2/x64/OVMF_CODE.4m.fd"
"-drive" "if=pflash,format=raw,file=${tmpdir}/efivars.fd"
)
;;
*)
printf "unknown hostname: %s\n" "${hostname}" >&2
exit 1