Advertisement
Guest User

launch-script

a guest
Apr 23rd, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #! /bin/sh
  2. # filename: launch-no-bridge
  3. # Set environment variables to make it easier to change
  4. export ROOTFS=rootfs-buildroot.ext2
  5. export NETWORK="-net nic -net user"
  6. export KERNEL="-kernel ./zImage "
  7. export DTB="-dtb vexpress-v2p-ca15_a7.dtb"
  8.  
  9. qemu-system-arm -append "root=/dev/mmcblk0 rw physmap.enabled=0 console=ttyAMA0" -M vexpress-a15 $DTB $KERNEL -sd $ROOTFS $NETWORK -nographic
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement