From 0f6c6238f9ab4b3eb01e8694309787af5b1c95e9 Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Fri, 18 Nov 2022 21:34:24 +0100 Subject: [PATCH] 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 Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20221118203424.106861-1-luca@z3ntu.xyz%3E --- pmb/qemu/run.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pmb/qemu/run.py b/pmb/qemu/run.py index 8da1a057..be922662 100644 --- a/pmb/qemu/run.py +++ b/pmb/qemu/run.py @@ -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.")