Hob: Fix the pattern patch for image name

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]

(Bitbake rev: 7b81389566cb27451557ca11ec8ed40ef2630543)

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Dongxiao Xu 2012-04-09 16:41:59 +08:00 committed by Richard Purdie
parent c546037dc9
commit 4c72ee98c2
1 changed files with 1 additions and 2 deletions

View File

@ -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