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 | poky-faf55131c9b86a8646dd80ca79b44a001b88a87f.tar.gz |
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 4bbd3f6d8a..854d675d19 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -45,6 +45,9 @@ else | |||
45 | if [ "$MACHINE" = "akita" ]; then | 45 | if [ "$MACHINE" = "akita" ]; then |
46 | TYPE="jffs2" | 46 | TYPE="jffs2" |
47 | fi | 47 | fi |
48 | if [ "$MACHINE" = "nokia800" ]; then | ||
49 | TYPE="jffs2" | ||
50 | fi | ||
48 | if [ "$MACHINE" = "spitz" ]; then | 51 | if [ "$MACHINE" = "spitz" ]; then |
49 | TYPE="ext3" | 52 | TYPE="ext3" |
50 | fi | 53 | fi |
@@ -58,7 +61,7 @@ if [ "x$4" != "x" ]; then | |||
58 | HDIMAGE=$4 | 61 | HDIMAGE=$4 |
59 | fi | 62 | fi |
60 | 63 | ||
61 | if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "spitz" -o "$MACHINE" = "borzoi" -o "$MACHINE" = "akita" ]; then | 64 | if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "spitz" -o "$MACHINE" = "borzoi" -o "$MACHINE" = "akita" -o "$MACHINE" = "nokia800" ]; then |
62 | if [ "x$ZIMAGE" = "x" ]; then | 65 | if [ "x$ZIMAGE" = "x" ]; then |
63 | ZIMAGE=$BUILDDIR/tmp/deploy/images/zImage-$MACHINE.bin | 66 | ZIMAGE=$BUILDDIR/tmp/deploy/images/zImage-$MACHINE.bin |
64 | fi | 67 | fi |
@@ -96,6 +99,15 @@ if [ "$MACHINE" = "akita" ]; then | |||
96 | fi | 99 | fi |
97 | fi | 100 | fi |
98 | 101 | ||
102 | if [ "$MACHINE" = "nokia800" ]; then | ||
103 | if [ "$TYPE" = "jffs2" ]; then | ||
104 | if [ "x$HDIMAGE" = "x" ]; then | ||
105 | HDIMAGE=$BUILDDIR/tmp/deploy/images/poky-image-sato-nokia800.jffs2 | ||
106 | fi | ||
107 | fi | ||
108 | fi | ||
109 | |||
110 | |||
99 | if [ "$MACHINE" = "qemux86" ]; then | 111 | if [ "$MACHINE" = "qemux86" ]; then |
100 | if [ "x$ZIMAGE" = "x" ]; then | 112 | if [ "x$ZIMAGE" = "x" ]; then |
101 | ZIMAGE=$BUILDDIR/tmp/deploy/images/bzImage-$MACHINE.bin | 113 | ZIMAGE=$BUILDDIR/tmp/deploy/images/bzImage-$MACHINE.bin |