]> code.ossystems Code Review - openembedded-core.git/commitdiff
runqemu: add poky-image-basic and poky-image-lsb to recognized images
authorSaul Wold <Saul.Wold@intel.com>
Tue, 31 Aug 2010 17:16:14 +0000 (10:16 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Thu, 2 Sep 2010 08:50:48 +0000 (09:50 +0100)
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
scripts/runqemu

index 16c2e85856d454a8c9b84fc2c24eb50d5be5cd61..4e4b42c70f186c5c2062070e10449c328d0a2645 100755 (executable)
@@ -113,7 +113,7 @@ if [ "$MACHINE" = "qemuarm" ]; then
     if [ "$TYPE" = "ext3" ]; then
         if [ "x$HDIMAGE" = "x" ]; then
             T=$TMPDIR/deploy/images
-            findimage $T qemuarm ext3 "poky-image-sdk poky-image-sato poky-image-minimal"
+            findimage $T qemuarm ext3 "poky-image-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal"
         fi
     fi
 fi
@@ -125,7 +125,7 @@ if [ "$MACHINE" = "qemumips" ]; then
     if [ "$TYPE" = "ext3" ]; then
         if [ "x$HDIMAGE" = "x" ]; then
             T=$TMPDIR/deploy/images
-            findimage $T $MACHINE ext3 "poky-image-sdk poky-image-sato poky-image-minimal"
+            findimage $T $MACHINE ext3 "poky-image-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal"
         fi
     fi
     CROSSPATH=$TMPDIR/sysroots/$BUILD_SYS/usr
@@ -138,7 +138,7 @@ if [ "$MACHINE" = "qemuppc" ]; then
     if [ "$TYPE" = "ext3" ]; then
         if [ "x$HDIMAGE" = "x" ]; then
             T=$TMPDIR/deploy/images
-            findimage $T $MACHINE ext3 "poky-image-sdk poky-image-sato poky-image-minimal"
+            findimage $T $MACHINE ext3 "poky-image-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal"
         fi
     fi
     CROSSPATH=$TMPDIR/sysroots/$BUILD_SYS/usr
@@ -176,7 +176,7 @@ if [ "$MACHINE" = "qemux86" ]; then
     if [ "$TYPE" = "ext3" ]; then
         if [ "x$HDIMAGE" = "x" ]; then
             T=$TMPDIR/deploy/images
-            findimage $T qemux86 ext3 "moblin-image-sdk moblin-image-netbook poky-image-sdk poky-image-sato poky-image-minimal"
+            findimage $T qemux86 ext3 "moblin-image-sdk moblin-image-netbook poky-image-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal"
         fi
     fi
     CROSSPATH=$TMPDIR/sysroots/$BUILD_SYS/usr
@@ -189,7 +189,7 @@ if [ "$MACHINE" = "qemux86-64" ]; then
     if [ "$TYPE" = "ext3" ]; then
         if [ "x$HDIMAGE" = "x" ]; then
             T=$TMPDIR/deploy/images
-            findimage $T qemux86-64 ext3 "moblin-image-sdk moblin-image-netbook poky-image-sdk poky-image-sato poky-image-minimal"
+            findimage $T qemux86-64 ext3 "moblin-image-sdk moblin-image-netbook poky-image-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal"
         fi
     fi
     CROSSPATH=$TMPDIR/sysroots/$BUILD_SYS/usr