eos0/scripts/start.sh

18 lines
260 B
Bash
Raw Normal View History

2024-12-05 18:23:16 +00:00
#!/usr/bin/env bash
2024-12-05 22:58:05 +00:00
set -x
2024-12-05 18:23:16 +00:00
KERNEL=$1
shift
qemu-system-riscv64 \
-nographic \
-machine virt \
-bios none \
-m 3G \
2024-12-05 22:58:05 +00:00
-d trace:exec_tb \
2024-12-05 18:23:16 +00:00
-kernel "$KERNEL"
2024-12-05 22:58:05 +00:00
# -smp 3 \
# -device virtio-blk-device,drive=x0,bus=virtio-mmio-bus.0 \