diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-01-22 10:44:43 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-01-22 10:44:43 +0100 |
commit | 02026a99c5723704dddde7ee73c7b01edf96504c (patch) | |
tree | 2b1502a366d2eb971163283b7feeac370a6dda3e /bin/debvm-run | |
parent | 526ead3ce6a035c99076d9dc91785c799415e2ac (diff) | |
download | debvm-02026a99c5723704dddde7ee73c7b01edf96504c.tar.gz |
debvm-run: arm virt machine cannot do more than 8 cores
Diffstat (limited to 'bin/debvm-run')
-rwxr-xr-x | bin/debvm-run | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/debvm-run b/bin/debvm-run index 29e986e..70ee556 100755 --- a/bin/debvm-run +++ b/bin/debvm-run @@ -231,6 +231,7 @@ case "$VMARCH" in arm|armel) CPU=max MACHINE="type=virt" + MAX_SMP=8 RNG_DEV= ;; arm64) @@ -241,6 +242,7 @@ case "$VMARCH" in armhf) CPU=max MACHINE="type=virt" + MAX_SMP=8 ;; m68k) MACHINE="type=virt" |