Permalink
Cannot retrieve contributors at this time
# -serial stdio: redirect the virtual hosts stdio to my console | |
cur=$(pwd) | |
sudo qemu-system-arm \ | |
-m 2048 \ | |
-M virt \ | |
-cpu cortex-a15 \ | |
-nographic \ | |
-kernel ${cur}/archlinux-latest/zImage \ | |
-append "root=/dev/vda1 rootfstype=ext4 rw" \ | |
-initrd ${cur}/archlinux-latest/initramfs-linux.img \ | |
-drive "file=${cur}/archlinux-latest/armbox.img,if=none,id=hd0,format=raw" \ | |
-device virtio-blk-device,drive=hd0 \ | |
-netdev "user,id=n0" \ | |
-device virtio-net-device,netdev=n0 \ | |
-netdev "bridge,id=n1,br=vmboxnet" \ | |
-device virtio-net-device,netdev=n1 \ |