2019-03-21 00:05:21 +01:00
|
|
|
Run Linux in emulation with:
|
2018-10-21 21:12:02 +02:00
|
|
|
|
2020-09-01 01:20:51 +02:00
|
|
|
qemu-system-riscv32 -M virt -bios output/images/fw_jump.elf -kernel output/images/Image -append "rootwait root=/dev/vda ro" -drive file=output/images/rootfs.ext2,format=raw,id=hd0 -device virtio-blk-device,drive=hd0 -netdev user,id=net0 -device virtio-net-device,netdev=net0 -nographic # qemu_riscv32_virt_defconfig
|
2018-10-21 21:12:02 +02:00
|
|
|
|
2024-05-12 12:07:15 +02:00
|
|
|
qemu-system-riscv32 -M virt -bios none -kernel output/images/Image -append "rootwait root=/dev/vda ro" -drive file=output/images/rootfs.ext2,format=raw,id=hd0 -device virtio-blk-device,drive=hd0 -nographic -cpu rv32,mmu=off -netdev user,id=eth0 -device virtio-net-device,netdev=eth0 # qemu_riscv32_nommu_virt_defconfig
|
|
|
|
|
2018-10-21 21:12:02 +02:00
|
|
|
The login prompt will appear in the terminal that started Qemu.
|