From 8fb4544061e182dbc0196fef38f5f72830f7b7ca Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 30 May 2025 03:13:40 -0500 Subject: [PATCH] add wget for the bin files --- .gitignore | 1 + Makefile | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a8a0dce --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.bin diff --git a/Makefile b/Makefile index d5c1d8a..777836f 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ wget-javascript: wget -c https://bellard.org/jslinux/riscvemu64-wasm.js wget -c https://bellard.org/jslinux/riscvemu32-wasm.js -cfg-files: +wget-cfg-files: rm -f *.cfg wget -c https://bellard.org/jslinux/alpine-x86.cfg wget -c https://bellard.org/jslinux/alpine-x86-xwin.cfg @@ -19,3 +19,11 @@ cfg-files: wget -c https://bellard.org/jslinux/buildroot-riscv64-xwin.cfg wget -c https://bellard.org/jslinux/fedora33-riscv.cfg wget -c https://bellard.org/jslinux/fedora33-riscv-xwin.cfg + +wget-bin: + rm -f *.bin + wget -c https://bellard.org/jslinux/kernel-x86.bin + wget -c https://bellard.org/jslinux/bbl64.bin + wget -c https://bellard.org/jslinux/kernel-riscv64.bin + wget -c https://bellard.org/jslinux/bios.bin + wget -c https://bellard.org/jslinux/vgabios.bin