diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-09 17:19:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 17:19:59 +0200 |
commit | 704e4724774fd8f145d632f3327bb86fe9db786b (patch) | |
tree | 00299e070feb69f20eea43b708c7a26f6a68bb50 | |
parent | 3c1e27b8b6c853952423117e8a3cfb3645c3c47e (diff) | |
parent | fa1462aa6dfb3ca51fcc86bdbfb259cc3fe65981 (diff) | |
download | vyos-build-704e4724774fd8f145d632f3327bb86fe9db786b.tar.gz vyos-build-704e4724774fd8f145d632f3327bb86fe9db786b.zip |
Merge pull request #395 from Apachez-/T5562
T5562: Fix smp-syntax for qemu-system-x86_64
-rwxr-xr-x | scripts/check-qemu-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 5cfb831e..fabe8fbb 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -143,7 +143,7 @@ def get_qemu_cmd(name, enable_kvm, enable_uefi, disk_img, raid=None, iso_img=Non macbase = '52:54:00:00:00' cmd = f'qemu-system-x86_64 \ -name "{name}" \ - -smp {cpucount} sockets=1,cores={cpucount},threads=1 \ + -smp {cpucount},sockets=1,cores={cpucount},threads=1 \ -cpu host \ {uefi} \ -m 3G \ |