summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorConstantin Musca <constantinx.musca@intel.com>2012-10-03 12:04:17 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-03 17:29:29 +0100
commit001b1c439ffa450cb8728b0fa9469fed63ae9bed (patch)
tree415353fd23bfd9b8d059128d7fc728aff8ba34a2
parenta84c466eae7c2616c041faf930163f23834f0685 (diff)
downloadbitbake-001b1c439ffa450cb8728b0fa9469fed63ae9bed.tar.gz
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] Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xlib/bb/ui/crumbs/imagedetailspage.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/ui/crumbs/imagedetailspage.py b/lib/bb/ui/crumbs/imagedetailspage.py
index 03afc553f..c47d67a22 100755
--- a/lib/bb/ui/crumbs/imagedetailspage.py
+++ b/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):