9 lines
370 B
Batchfile
9 lines
370 B
Batchfile
@echo off
|
|
if exist sd.bin goto run
|
|
qemu-img create -f raw sd.bin 64M
|
|
|
|
:run
|
|
qemu-system-aarch64 -M virt,gic-version=2 -cpu cortex-a53 -smp 4 -kernel rtthread.elf -nographic ^
|
|
-drive if=none,file=sd.bin,format=raw,id=blk0 -device virtio-blk-device,drive=blk0,bus=virtio-mmio-bus.0 ^
|
|
-netdev user,id=net0 -device virtio-net-device,netdev=net0,bus=virtio-mmio-bus.1
|