diff options
| author | Alexander Potapenko <glider@google.com> | 2024-05-16 15:29:50 +0200 |
|---|---|---|
| committer | Alexander Potapenko <glider@google.com> | 2024-07-29 15:29:47 +0000 |
| commit | 7402146ee1d6f2137dbca80db75f9dbef86bafbf (patch) | |
| tree | 77a19b4bfa996bc7460cae078c6982db3194f694 /vm/qemu | |
| parent | 5187fc86b2d7b0366e226f6040391e9744441831 (diff) | |
vm/qemu: use the maximum available VGIC on arm64
Newer virtual IRQ controllers provide more features, so this should
hopefully increase the coverage.
Diffstat (limited to 'vm/qemu')
| -rw-r--r-- | vm/qemu/qemu.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go index 858339c23..958523b6f 100644 --- a/vm/qemu/qemu.go +++ b/vm/qemu/qemu.go @@ -150,7 +150,7 @@ var archConfigs = map[string]*archConfig{ }, "linux/arm64": { Qemu: "qemu-system-aarch64", - QemuArgs: "-machine virt,virtualization=on -cpu cortex-a57 -accel tcg,thread=multi", + QemuArgs: "-machine virt,virtualization=on,gic-version=max -cpu cortex-a57 -accel tcg,thread=multi", NetDev: "virtio-net-pci", RngDev: "virtio-rng-pci", CmdLine: []string{ |
