diff options
Diffstat (limited to 'debvm-run')
-rwxr-xr-x | debvm-run | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -200,6 +200,7 @@ if test "$ARCHITECTURE" = "$VMARCH"; then ;; esac else + QEMU="qemu-system-$VMARCH" case "$VMARCH" in arm64) QEMU=qemu-system-aarch64 @@ -213,16 +214,14 @@ else QEMU=qemu-system-ppc64 ;; mips64el) - QEMU="qemu-system-$VMARCH" MAX_SMP=1 set -- -cpu 5KEc "$@" ;; mipsel) - QEMU="qemu-system-$VMARCH" MAX_SMP=1 ;; - *) - QEMU="qemu-system-$VMARCH" + riscv64) + set -- -machine virt "$@" ;; esac fi |