start-vm.sh 945 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #!/bin/bash
  2. set -e
  3. SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
  4. image="./workspace/nixos-rpi2.img"
  5. mountdir="/mnt/nixos-rpi2"
  6. dtb="bcm2836-rpi-2-b.dtb"
  7. kernel="zImage"
  8. loop=`losetup -f --show -P "$image"`
  9. echo "created loopback device $loop"
  10. mkdir -p "$mountdir"
  11. mount "${loop}p2" "$mountdir"
  12. echo "mounted to $mountdir"
  13. dtb_path=`find "$mountdir/nix/store/" -name "$dtb" | head -n1`
  14. cp "$dtb_path" .
  15. kernel_path=`find "$mountdir/nix/store/" -name "$kernel" | head -n1`
  16. cp "$kernel_path" .
  17. cd "$mountdir"
  18. # bash
  19. cd "$SCRIPT_PATH"
  20. umount "$mountdir"
  21. losetup -d "$loop"
  22. qemu-img resize -f raw "$image" 4G
  23. qemu-system-arm -M raspi2b \
  24. -append "rw earlyprintk loglevel=8 console=ttyAMA0,115200 dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootdelay=1" \
  25. -drive file="$image",format=raw,if=sd \
  26. -dtb "$dtb" -kernel "$kernel" -m 1G -smp 4 \
  27. -serial stdio -usb -device usb-mouse -device usb-kbd 2>&1 | tee qemu.log