From edbe058d9fa352f53efe23fd7801c7e918b3f53e Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 30 Apr 2024 00:17:43 +0200 Subject: [PATCH] Readme --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4d46ef7 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# OpenBSD RISC-V on QEMU + +This is a helper makefile to run OpenBSD on QEMU RISC-V. It will download the OpenBSD installer image and create a qcow2 image to boot from. +It also handles checksum verification using signify and cksum. + +## Dependencies + +```sh +sudo dnf install qemu-system-riscv-core make curl tar signify qemu-img +``` + +```sh +make installer # Launch qemu with the OpenBSD installer image attached +make run # Launch qemu with the qcow2 +```