mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Add floppy disk image support
This commit is contained in:
parent
11c0933b0c
commit
e5a0bdf876
2 changed files with 13 additions and 0 deletions
6
quickemu
6
quickemu
|
@ -483,6 +483,11 @@ function vm_boot() {
|
|||
-monitor none
|
||||
-serial mon:stdio)
|
||||
|
||||
if [ -n "${floppy}" ] && [ -e "${floppy}" ]; then
|
||||
# shellcheck disable=SC2054
|
||||
args+=(-drive file=${floppy},index=0,if=floppy,format=raw)
|
||||
fi
|
||||
|
||||
# Add the disks
|
||||
if [ "${boot}" == "efi" ] || [ "${boot}" == "uefi" ]; then
|
||||
# shellcheck disable=SC2054
|
||||
|
@ -608,6 +613,7 @@ cpu_cores=""
|
|||
disk_img=""
|
||||
disk="64G"
|
||||
fixed_iso=""
|
||||
floppy=""
|
||||
guest_os="linux"
|
||||
img=""
|
||||
iso=""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue