From patchwork Wed Oct 3 09:04:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] hob/imagedetailspage: disable the deploy tool for qemu machines Date: Wed, 03 Oct 2012 09:04:17 -0000 From: Constantin Musca X-Patchwork-Id: 37665 Message-Id: <1349255057-29737-1-git-send-email-constantinx.musca@intel.com> To: bitbake-devel@lists.openembedded.org Cc: Constantin Musca - qemu images cannot be deployed to hardware, even if live images (hddimg and iso) files are created [YOCTO #3196] Signed-off-by: Constantin Musca --- bitbake/lib/bb/ui/crumbs/imagedetailspage.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py index a843ad4..79bca2e 100755 --- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py +++ b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py @@ -426,6 +426,8 @@ class ImageDetailsPage (HobPage): return mach_runnable def test_deployable(self, image_name): + if self.builder.configuration.curr_mach.startswith("qemu"): + return False deployable = False for t in self.builder.parameters.deployable_image_types: if image_name.endswith(t):