Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. #!/bin/sh
  2. qemu-system-aarch64 -M virt -cpu cortex-a53 -nographic -smp 1 \
  3. -kernel output/images/Image \
  4. -append "root=/dev/vda console=ttyAMA0" \
  5. -netdev user,id=eth0 -device virtio-net-device,netdev=eth0 \
  6. -redir tcp:10000::1000 \
  7. -fsdev local,id=h9,path=/home/uzytkownik/Pulpit/tmp,security_model=none \
  8. -device virtio-9p-device,fsdev=h9,mount_tag=h
  9.  
  10. qemu-system-aarch64 -M virt -cpu cortex-a57 -nographic -smp 1 \
  11. -kernel openwrt-18.06.4-armvirt-64-Image -append "root=/dev/vda console=ttyAMA0" \
  12. -netdev user,id=eth0 -device virtio-net-device,netdev=eth0 \
  13. -drive file=openwrt-18.06.4-armvirt-64-root.ext4,if=none,format=raw,id=hd0 -device virtio-blk-device,drive=hd0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement