aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/runqemu-internal
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-xscripts/runqemu-internal20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index d6fafb6..ab7e8a8 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -338,26 +338,6 @@ if [ "$MACHINE" = "beagleboard" -a "$SD_NEEDED" = "y" ]; then
else
echo "No need to create image."
fi
-if [ "$MACHINE" = "vexpressa9" -a "$SD_NEEDED" = "y" ]; then
- echo "Creating vexpress A9 SD image ..."
- QEMU_IMG=qemu-img
- QEMUIMG=`which $QEMU_IMG 2> /dev/null`
- if [ ! -x "$QEMUIMG" ]; then
- echo "Error: No QEMUIMG binary '$QEMU_IMG' could be found."
- cleanup
- return
- fi
- CREATE_SD_SCRIPT=$(dirname $0)/create_img_vexpress-a9.sh
- echo "IMGNAME $IMGNAME"
- echo "QEMUIMG $QEMUIMG"
- $CREATE_SD_SCRIPT $IMGNAME $KERNEL $ROOTFS $QEMUIMG
- if [ $? != 0 ]; then
- cleanup
- return
- fi
-else
- echo "No need to create image."
-fi
if [ "$FSTYPE" != "nfs" -a ! -f "$ROOTFS" ]; then
echo "Error: Image file $ROOTFS doesn't exist"