diff options
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 |