From patchwork Mon Apr 9 08:41:59 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,3/6] Hob: Fix the pattern patch for image name Date: Mon, 09 Apr 2012 08:41:59 -0000 From: Dongxiao Xu X-Patchwork-Id: 25361 Message-Id: To: bitbake-devel@lists.openembedded.org Sometimes, users may open an image that is not built by Hob, therefore its image name is not started with "hob-image-". This commit sets a looser rule for runnable image matching. This fixes [YOCTO #2240] Signed-off-by: Dongxiao Xu --- lib/bb/ui/crumbs/imagedetailspage.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib/bb/ui/crumbs/imagedetailspage.py b/lib/bb/ui/crumbs/imagedetailspage.py index b685d11..277f9d4 100755 --- a/lib/bb/ui/crumbs/imagedetailspage.py +++ b/lib/bb/ui/crumbs/imagedetailspage.py @@ -272,8 +272,7 @@ class ImageDetailsPage (HobPage): def test_mach_runnable(self, image_name): mach_runnable = False for t in self.builder.parameters.runnable_machine_patterns: - mach_string = image_name.strip(self.builder.hob_image + '-') - if mach_string.startswith(t): + if t in image_name: mach_runnable = True break return mach_runnable