pmb.qemu.run: stop forcing bios for riscv64

We decided now not to force the bios firmware being used for riscv64 but
instead just use the one built into QEMU.

Reviewed-by: Oliver Smith <ollieparanoid@postmarketos.org>
Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20221118203424.106861-1-luca@z3ntu.xyz%3E
This commit is contained in:
Luca Weiss 2022-11-18 21:34:24 +01:00 committed by Oliver Smith
parent 315621d5b8
commit 0f6c6238f9
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 0 additions and 1 deletions

View File

@ -196,7 +196,6 @@ def command_qemu(args, arch, img_path, img_path_2nd=None):
elif arch == "riscv64":
command += ["-M", "virt"]
command += ["-device", "virtio-gpu-pci"]
command += ["-bios", f"{rootfs}/usr/share/opensbi/generic/firmware/fw_jump.elf"]
else:
raise RuntimeError(f"Architecture {arch} not supported by this command"
" yet.")