From: Constantin Musca Date: Wed, 3 Oct 2012 09:04:17 +0000 (+0300) Subject: bitbake: hob/imagedetailspage: disable the deploy tool for qemu machines X-Git-Tag: rev_ivi_2015_02_04~15247 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8126e61384417b76ba56ae0c46d1677ddc6d934b;p=scm%2Fbb%2Ftizen-distro.git bitbake: hob/imagedetailspage: disable the deploy tool for qemu machines - qemu images cannot be deployed to hardware, even if live images (hddimg and iso) files are created [YOCTO #3196] (Bitbake rev: 001b1c439ffa450cb8728b0fa9469fed63ae9bed) Signed-off-by: Constantin Musca Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py index 03afc55..c47d67a 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):