diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-25 15:18:09 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-25 15:19:13 +0100 |
commit | aeefcd6ddb4902b78acd18428038a9aa6a15f4e8 (patch) | |
tree | 4e855930773b2c687f31b246a490472e1374a84f /Kernel/run | |
parent | 1e419b482a571d03e7bccc0725aac2f4b29fbd35 (diff) | |
download | serenity-aeefcd6ddb4902b78acd18428038a9aa6a15f4e8.zip |
run: Run QEMU with "-cpu max"
This should give us access to the largest set of CPU features available
on the host machine.
Diffstat (limited to 'Kernel/run')
-rwxr-xr-x | Kernel/run | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/run b/Kernel/run index d5709adf8d..2affd27203 100755 --- a/Kernel/run +++ b/Kernel/run @@ -18,6 +18,7 @@ cd "$script_path" [ -z "$SERENITY_COMMON_QEMU_ARGS" ] && SERENITY_COMMON_QEMU_ARGS=" $SERENITY_EXTRA_QEMU_ARGS -s -m $SERENITY_RAM_SIZE +-cpu max -d cpu_reset,guest_errors -device VGA,vgamem_mb=64 -hda _disk_image |