diff --git a/README.md b/README.md index 232658a..eafb6b7 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,10 @@ make > numbers are what I compiled against but are not strict. > 1. `make` \[v4.4.1] (aka `gnumake`) > 2. `emscripten` \[v4.0.8] -> 3. `SDL` \[v1.2.68] (aka `libsdl`) -> 4. `curl` \[v8.14.1] -> 5. `openssl` \[v3.4.1] +> 3. `SDL` \[v1.2.68] (aka `libsdl`/`SDL-devel`) +> 4. `curl` \[v8.14.1] (aka `libcurl-devel`) +> 5. `openssl` \[v3.4.1] (aka `openssl-devel`) +## Todo +1. Expose the CONFIG_FS_NET + CONFIG_SDL Makefile variables diff --git a/cfg/buildroot-riscv64.cfg b/cfg/buildroot-riscv64.cfg new file mode 100644 index 0000000..f450e1e --- /dev/null +++ b/cfg/buildroot-riscv64.cfg @@ -0,0 +1,11 @@ +/* VM configuration file */ +{ + version: 1, + machine: "riscv64", + memory_size: 256, + bios: "bbl64.bin", + kernel: "kernel-riscv64.bin", + cmdline: "loglevel=3 swiotlb=1 console=hvc0 root=root rootfstype=9p rootflags=trans=virtio ro TZ=${TZ}", + fs0: { file: "https://vfsync.org/u/os/buildroot-riscv64" }, + eth0: { driver: "user" }, +}