
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3652 311d38ba-8fff-0310-9ca6-ca027cbcb966
3.5 KiB
Executable File
#!/bin/sh
Handle Poky <-> QEmu interface voodoo
Copyright (C) 2006-2007 OpenedHand Ltd.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
if [ "x$BUILDDIR" = "x" ]; then echo "You need to source poky-init-build-env before running this script" exit 1 fi
INTERNAL_SCRIPT=which poky-qemu-internal
if [ "x$1" = "x" ]; then echo echo "Run as $0 MACHINE IMAGETYPE ZIMAGE IMAGEFILE" echo "where:" echo " MACHINE - the machine to emulate (qemuarm, qemux86)" echo " IMAGETYPE - the type of image to run (ext2, nfs) (default: ext2)" echo " ZIMAGE - the kernel to use (optional)" echo " IMAGEFILE - the image file/location to use (optional)" exit 1 else MACHINE=$1 fi
if [ "x$2" != "x" ]; then TYPE=$2 else TYPE="ext2" if [ "$MACHINE" = "akita" ]; then TYPE="jffs2" fi if [ "$MACHINE" = "spitz" ]; then TYPE="ext3" fi fi
if [ "x$3" != "x" ]; then ZIMAGE=$3 fi
if [ "x$4" != "x" ]; then HDIMAGE=$4 fi
if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "spitz" -o "$MACHINE" = "borzoi" -o "$MACHINE" = "akita" ]; then if [ "x$ZIMAGE" = "x" ]; then ZIMAGE=$BUILDDIR/tmp/deploy/images/zImage-$MACHINE.bin fi CROSSPATH=$BUILDDIR/tmp/cross/arm-poky-linux-gnueabi/bin fi
if [ "$MACHINE" = "qemuarm" ]; then if [ "$TYPE" = "ext2" ]; then if [ "x$HDIMAGE" = "x" ]; then T=$BUILDDIR/tmp/deploy/images/poky-image if [ -e "$T-sdk-qemuarm.ext2" ]; then HDIMAGE="$T-sdk-qemuarm.ext2" elif [ -e "$T-sato-qemuarm.ext2" ]; then HDIMAGE="$T-sato-qemuarm.ext2" elif [ -e "$T-minimal-qemuarm.ext2" ]; then HDIMAGE="$T-minimal-qemuarm.ext2" fi fi fi fi
if [ "$MACHINE" = "spitz" ]; then if [ "$TYPE" = "ext3" ]; then if [ "x$HDIMAGE" = "x" ]; then HDIMAGE=$BUILDDIR/tmp/deploy/images/poky-image-sato-spitz.ext3 fi fi fi
if [ "$MACHINE" = "akita" ]; then if [ "$TYPE" = "jffs2" ]; then if [ "x$HDIMAGE" = "x" ]; then HDIMAGE=$BUILDDIR/tmp/deploy/images/poky-image-sato-akita.jffs2 fi fi fi
if [ "$MACHINE" = "qemux86" ]; then if [ "x$ZIMAGE" = "x" ]; then ZIMAGE=$BUILDDIR/tmp/deploy/images/bzImage-$MACHINE.bin fi if [ "$TYPE" = "ext2" ]; then if [ "x$HDIMAGE" = "x" ]; then T=$BUILDDIR/tmp/deploy/images/poky-image if [ -e "$T-sdk-qemux86.ext2" ]; then HDIMAGE=$T-sdk-qemux86.ext2 elif [ -e "$T-sato-qemux86.ext2" ]; then HDIMAGE=$T-sato-qemux86.ext2 elif [ -e "$T-minimal-qemux86.ext2" ]; then HDIMAGE=$T-minimal-qemux86.ext2 fi fi fi CROSSPATH=$BUILDDIR/tmp/cross/i586-poky-linux/bin fi
CROSSPATH=$BUILDDIR/tmp/staging/$BUILD_SYS/usr/bin:$CROSSPATH:$BUILDDIR/tmp/cross/bin
if [ ! -e $CROSSPATH/cc ]; then ln -s $CROSSPATH/gcc $CROSSPATH/cc fi
. $INTERNAL_SCRIPT