We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68e8ccf commit a2aab9fCopy full SHA for a2aab9f
quickemu
@@ -348,7 +348,11 @@ function configure_cpu() {
348
# https://qemu-project.gitlab.io/qemu/system/arm/virt.html
349
case ${arch_host} in
350
arm64|aarch64) CPU_MODEL="max"
351
- MACHINE_TYPE="virt,highmem=off";;
+ MACHINE_TYPE="virt"
352
+ # https://github.com/lima-vm/lima/pull/703
353
+ if [ "${QEMU_VER_SHORT}" -le 70 ]; then
354
+ MACHINE_TYPE+=",highmem=off"
355
+ fi;;
356
esac
357
elif [ "${arch_vm}" != "${arch_host}" ]; then
358
# If the architecture of the VM is different from the host, disable acceleration
0 commit comments