Added extra runner on Makefile

This commit is contained in:
Fabio Scotto di Santolo
2025-12-19 16:05:45 +01:00
parent 1704de6d9e
commit f71bfa68f6
2 changed files with 93 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ $(OUT): $(SRC) $(LD_SCRIPT)
clean:
rm -f $(OUT) kernel.map
run: $(OUT)
run-container: $(OUT)
distrobox enter archlinux -- qemu-system-riscv32 \
-machine virt \
-bios default \
@@ -24,3 +24,12 @@ run: $(OUT)
-serial mon:stdio \
-no-reboot \
-kernel $(OUT)
run: $(OUT)
qemu-system-riscv32 \
-machine virt \
-bios default \
-nographic \
-serial mon:stdio \
-no-reboot \
-kernel $(OUT)