mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-03 02:05:21 +00:00
11 lines
371 B
Bash
Executable File
11 lines
371 B
Bash
Executable File
#!/bin/bash
|
|
BUILDROOT="${BUILDROOT:-$RISCV/buildroot}"
|
|
IMAGES="$BUILDROOT"/output/images
|
|
qemu-system-riscv64 \
|
|
-M virt -m 256M -nographic \
|
|
-bios "$IMAGES"/fw_jump.bin \
|
|
-kernel "$IMAGES"/Image \
|
|
-initrd "$IMAGES"/rootfs.cpio \
|
|
-dtb "$IMAGES"/wally-virt.dtb \
|
|
-cpu rva22s64,zicond=true,zfa=true,zfh=true,zcb=true,zbc=true,zkn=true,sstc=true,svadu=true,svnapot=true
|