Skip to content
Snippets Groups Projects
Unverified Commit 828f8005 authored by Jens Reidel's avatar Jens Reidel
Browse files

qemu: run: Add support for ppc64le (MR 2476)


Signed-off-by: default avatarJens Reidel <adrian@travitia.xyz>
parent 1e3e4190
Branches
No related tags found
No related merge requests found
......@@ -249,6 +249,9 @@ def command_qemu(
elif arch == Arch.riscv64:
command += ["-M", "virt"]
command += ["-device", "virtio-gpu-pci"]
elif arch == Arch.ppc64le:
command += ["-M", "pseries"]
command += ["-device", "virtio-gpu-pci"]
else:
raise RuntimeError(f"Architecture {arch} not supported by this command" " yet.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment