From 3c6c997d0574d37e642d396274e288b8e2ebaf7a Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Sun, 5 Jan 2025 00:01:20 -0800 Subject: [PATCH] Update linux testvector generation qemu command to work with new OpenSBI firmware --- linux/genInitMem.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/genInitMem.sh b/linux/genInitMem.sh index a85837f80..b77445add 100755 --- a/linux/genInitMem.sh +++ b/linux/genInitMem.sh @@ -29,7 +29,7 @@ echo "Launching QEMU in replay mode!" (qemu-system-riscv64 \ -M virt -m 256M -dtb "$DEVICE_TREE" \ -nographic \ --bios "$imageDir"/fw_jump.elf -kernel "$imageDir"/Image -append "root=/dev/vda ro" -initrd "$imageDir"/rootfs.cpio \ +-bios "$imageDir"/fw_jump.bin -kernel "$imageDir"/Image -append "root=/dev/vda ro" -initrd "$imageDir"/rootfs.cpio \ -gdb tcp::$tcpPort -S) \ & riscv64-unknown-elf-gdb --quiet \ -ex "set pagination off" \