Documentation+Meta: Automatically set vmx=off on Windows
This commit is contained in:
parent
2c392669c6
commit
cc87bf46c1
Notes:
sideshowbarker
2024-07-18 09:22:37 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/cc87bf46c13 Pull-request: https://github.com/SerenityOS/serenity/pull/8594 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/awesomekling ✅ Reviewed-by: https://github.com/nico
2 changed files with 7 additions and 3 deletions
|
@ -51,9 +51,6 @@ To run SerenityOS in a WHPX-enabled QEMU VM:
|
|||
- Specify QEMU acceleration option: \
|
||||
`export SERENITY_VIRT_TECH_ARG="-accel whpx,kernel-irqchip=off"`
|
||||
|
||||
- Disable Virtual Machine eXtensions on the vCPU, otherwise some versions of QEMU will crash out with a "WHPX: Unexpected VP exit code 4" error: \
|
||||
`export SERENITY_QEMU_CPU="max,vmx=off"`
|
||||
|
||||
- Start the VM with `Meta/serenity.sh run` as usual.
|
||||
|
||||
### Known issues with WHPX
|
||||
|
|
|
@ -49,6 +49,13 @@ fi
|
|||
|
||||
[ -z "$SERENITY_RAM_SIZE" ] && SERENITY_RAM_SIZE=512M
|
||||
|
||||
if command -v wslpath >/dev/null; then
|
||||
case "$SERENITY_QEMU_BIN" in
|
||||
/mnt/c/*)
|
||||
[ -z "$SERENITY_QEMU_CPU" ] && SERENITY_QEMU_CPU="max,vmx=off"
|
||||
esac
|
||||
fi
|
||||
|
||||
[ -z "$SERENITY_QEMU_CPU" ] && SERENITY_QEMU_CPU="max"
|
||||
|
||||
[ -z "$SERENITY_DISK_IMAGE" ] && {
|
||||
|
|
Loading…
Add table
Reference in a new issue