- #/bin/sh
- #
- # Copyright (C) 2015-2016 ilbers GmbH
- dir=tmp/deploy/images
- img=core-image-base-zynq.sdimg
- ver=-3.16.0-4-armmp
- qemu-system-arm -m 1024M -M vexpress-a9 \
- -nographic -monitor none -serial stdio \
- -kernel $dir/vmlinuz$ver \
- -dtb $dir/vexpress-v2p-ca9.dtb \
- -initrd $dir/initrd.img$ver \
- -append "root=/dev/mmcblk0p2 console=ttyAMA0" \
- -sd $dir/$img
|