summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hig.py
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-04-16 15:51:43 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-16 12:56:25 +0100
commitd5a9ff4b27e8826b47737c4094463896874253f4 (patch)
tree99bb1fa5a3d5c3f7333e9067f2ddd381439155df /bitbake/lib/bb/ui/crumbs/hig.py
parente8ab6ab64b600c9ce550da88cff1868882c7f79d (diff)
downloadpoky-d5a9ff4b27e8826b47737c4094463896874253f4.tar.gz
Hob: Fix contents in imagedetailsscreen
This commit fixes the contents in imagedetailsscreen, which lacks some kind of image types, e.x., iso and hddimg. (Bitbake rev: 4505097f4f7834857a6086d5dabeedb24b49cf4c) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hig.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py
index 322efc698f..a85b478a87 100644
--- a/bitbake/lib/bb/ui/crumbs/hig.py
+++ b/bitbake/lib/bb/ui/crumbs/hig.py
@@ -1107,7 +1107,7 @@ class ImageSelectionDialog (CrumbsDialog):
1107 for image_type in self.image_types: 1107 for image_type in self.image_types:
1108 for real_image_type in hcc.SUPPORTED_IMAGE_TYPES[image_type]: 1108 for real_image_type in hcc.SUPPORTED_IMAGE_TYPES[image_type]:
1109 if f.endswith('.' + real_image_type): 1109 if f.endswith('.' + real_image_type):
1110 imageset.add(f.rsplit('.' + real_image_type)[0]) 1110 imageset.add(f.rsplit('.' + real_image_type)[0].rsplit('.rootfs')[0])
1111 self.image_list.append(f) 1111 self.image_list.append(f)
1112 1112
1113 for image in imageset: 1113 for image in imageset: