diff options
author | Richard Purdie <richard@openedhand.com> | 2007-01-30 12:23:57 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-01-30 12:23:57 +0000 |
commit | 3cce9ba903a35dce67c08a8344acd52a3eae3e41 (patch) | |
tree | e9f97d39fa62fe55ccb267381507dbd0fd8ece47 /scripts/runqemu | |
parent | 9604533009f19b8deadb827da9bd957cf75d67ab (diff) | |
download | poky-3cce9ba903a35dce67c08a8344acd52a3eae3e41.tar.gz |
scripts: Add support to scripts for spitz images
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1216 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index aa37974091..4c1e2ef78b 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -43,6 +43,9 @@ else | |||
43 | if [ "$MACHINE" = "akita" ]; then | 43 | if [ "$MACHINE" = "akita" ]; then |
44 | TYPE="jffs2" | 44 | TYPE="jffs2" |
45 | fi | 45 | fi |
46 | if [ "$MACHINE" = "spitz" ]; then | ||
47 | TYPE="ext3" | ||
48 | fi | ||
46 | fi | 49 | fi |
47 | 50 | ||
48 | if [ "x$3" != "x" ]; then | 51 | if [ "x$3" != "x" ]; then |
@@ -68,6 +71,14 @@ if [ "$MACHINE" = "qemuarm" ]; then | |||
68 | fi | 71 | fi |
69 | fi | 72 | fi |
70 | 73 | ||
74 | if [ "$MACHINE" = "spitz" ]; then | ||
75 | if [ "$TYPE" = "ext3" ]; then | ||
76 | if [ "x$HDIMAGE" = "x" ]; then | ||
77 | HDIMAGE=$BUILDDIR/tmp/deploy/images/oh-image-pda-spitz.ext3 | ||
78 | fi | ||
79 | fi | ||
80 | fi | ||
81 | |||
71 | if [ "$MACHINE" = "akita" ]; then | 82 | if [ "$MACHINE" = "akita" ]; then |
72 | if [ "$TYPE" = "jffs2" ]; then | 83 | if [ "$TYPE" = "jffs2" ]; then |
73 | if [ "x$HDIMAGE" = "x" ]; then | 84 | if [ "x$HDIMAGE" = "x" ]; then |