diff options
author | Richard Purdie <richard@openedhand.com> | 2008-04-10 09:50:54 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-04-10 09:50:54 +0000 |
commit | faf55131c9b86a8646dd80ca79b44a001b88a87f (patch) | |
tree | d8127bd7dd5339145a21c1aa8c6b850f681f05b8 /scripts/runqemu | |
parent | 5091c0bd8842b2a5f94e47c391dc6fe73eac8901 (diff) | |
download | openembedded-core-faf55131c9b86a8646dd80ca79b44a001b88a87f.tar.gz openembedded-core-faf55131c9b86a8646dd80ca79b44a001b88a87f.tar.bz2 openembedded-core-faf55131c9b86a8646dd80ca79b44a001b88a87f.tar.xz openembedded-core-faf55131c9b86a8646dd80ca79b44a001b88a87f.zip |
scripts: Add support for nokia800 to runqemu
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4226 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 4bbd3f6d8..854d675d1 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -45,6 +45,9 @@ else if [ "$MACHINE" = "akita" ]; then TYPE="jffs2" fi + if [ "$MACHINE" = "nokia800" ]; then + TYPE="jffs2" + fi if [ "$MACHINE" = "spitz" ]; then TYPE="ext3" fi @@ -58,7 +61,7 @@ if [ "x$4" != "x" ]; then HDIMAGE=$4 fi -if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "spitz" -o "$MACHINE" = "borzoi" -o "$MACHINE" = "akita" ]; then +if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "spitz" -o "$MACHINE" = "borzoi" -o "$MACHINE" = "akita" -o "$MACHINE" = "nokia800" ]; then if [ "x$ZIMAGE" = "x" ]; then ZIMAGE=$BUILDDIR/tmp/deploy/images/zImage-$MACHINE.bin fi @@ -96,6 +99,15 @@ if [ "$MACHINE" = "akita" ]; then fi fi +if [ "$MACHINE" = "nokia800" ]; then + if [ "$TYPE" = "jffs2" ]; then + if [ "x$HDIMAGE" = "x" ]; then + HDIMAGE=$BUILDDIR/tmp/deploy/images/poky-image-sato-nokia800.jffs2 + fi + fi +fi + + if [ "$MACHINE" = "qemux86" ]; then if [ "x$ZIMAGE" = "x" ]; then ZIMAGE=$BUILDDIR/tmp/deploy/images/bzImage-$MACHINE.bin |