mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Disable all disk tuning, for the sake of compatibility. Close #98
This commit is contained in:
parent
32da324717
commit
3c2249934a
1 changed files with 3 additions and 3 deletions
6
quickemu
6
quickemu
|
@ -782,16 +782,16 @@ function vm_boot() {
|
||||||
if [ -n "${img}" ]; then
|
if [ -n "${img}" ]; then
|
||||||
# shellcheck disable=SC2054
|
# shellcheck disable=SC2054
|
||||||
args+=(-device ide-hd,bus=ahci.1,drive=RecoveryImage
|
args+=(-device ide-hd,bus=ahci.1,drive=RecoveryImage
|
||||||
-drive id=RecoveryImage,if=none,format=raw,file="${img}",cache=none,aio=native)
|
-drive id=RecoveryImage,if=none,format=raw,file="${img}")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# shellcheck disable=SC2054,SC2206
|
# shellcheck disable=SC2054,SC2206
|
||||||
args+=(-device ${MAC_DISK_DEV},drive=SystemDisk
|
args+=(-device ${MAC_DISK_DEV},drive=SystemDisk
|
||||||
-drive id=SystemDisk,if=none,format=qcow2,file="${disk_img}",cache=none,aio=native ${STATUS_QUO})
|
-drive id=SystemDisk,if=none,format=qcow2,file="${disk_img}" ${STATUS_QUO})
|
||||||
else
|
else
|
||||||
# shellcheck disable=SC2054,SC2206
|
# shellcheck disable=SC2054,SC2206
|
||||||
args+=(-device virtio-blk-pci,drive=SystemDisk
|
args+=(-device virtio-blk-pci,drive=SystemDisk
|
||||||
-drive id=SystemDisk,if=none,format=qcow2,file="${disk_img}",cache=none,aio=native ${STATUS_QUO}
|
-drive id=SystemDisk,if=none,format=qcow2,file="${disk_img}" ${STATUS_QUO}
|
||||||
-device ${USB_HOST_PASSTHROUGH_CONTROLLER},id=spicepass
|
-device ${USB_HOST_PASSTHROUGH_CONTROLLER},id=spicepass
|
||||||
-chardev spicevmc,id=usbredirchardev1,name=usbredir
|
-chardev spicevmc,id=usbredirchardev1,name=usbredir
|
||||||
-device usb-redir,chardev=usbredirchardev1,id=usbredirdev1
|
-device usb-redir,chardev=usbredirchardev1,id=usbredirdev1
|
||||||
|
|
Loading…
Reference in a new issue