diff options
author | Richard Purdie <richard@openedhand.com> | 2007-01-29 17:03:29 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-01-29 17:03:29 +0000 |
commit | 86db48cd17bb2853e2074cc5625e005faf09ce87 (patch) | |
tree | f90650f61251d9c315ae0dc72b52c13f67ede295 /scripts/runqemu | |
parent | e41b8ef74998222758622b7ba4fdd94da4be57c3 (diff) | |
download | openembedded-core-86db48cd17bb2853e2074cc5625e005faf09ce87.tar.gz openembedded-core-86db48cd17bb2853e2074cc5625e005faf09ce87.tar.bz2 openembedded-core-86db48cd17bb2853e2074cc5625e005faf09ce87.tar.xz openembedded-core-86db48cd17bb2853e2074cc5625e005faf09ce87.zip |
scripts: Add framework for supporting akita images under qemu
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1214 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index d3643a626..aa3797409 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -40,6 +40,9 @@ if [ "x$2" != "x" ]; then TYPE=$2 else TYPE="ext2" + if [ "$MACHINE" = "akita" ]; then + TYPE="jffs2" + fi fi if [ "x$3" != "x" ]; then @@ -57,7 +60,6 @@ if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "spitz" -o "$MACHINE" = "borzoi" -o CROSSPATH=$BUILDDIR/tmp/cross/arm-poky-linux/bin fi - if [ "$MACHINE" = "qemuarm" ]; then if [ "$TYPE" = "ext2" ]; then if [ "x$HDIMAGE" = "x" ]; then @@ -66,6 +68,14 @@ if [ "$MACHINE" = "qemuarm" ]; then fi fi +if [ "$MACHINE" = "akita" ]; then + if [ "$TYPE" = "jffs2" ]; then + if [ "x$HDIMAGE" = "x" ]; then + HDIMAGE=$BUILDDIR/tmp/deploy/images/oh-image-pda-akita.jffs2 + fi + fi +fi + if [ "$MACHINE" = "qemux86" ]; then if [ "x$ZIMAGE" = "x" ]; then ZIMAGE=$BUILDDIR/tmp/deploy/images/bzImage-$MACHINE.bin |