Comments
Patch
@@ -530,10 +530,7 @@ class RecipeListModel(gtk.ListStore):
depends = event_model["depends"].get(item, []) + event_model["rdepends-pn"].get(item, [])
if ('task-' in name):
- if ('lib32-' in name or 'lib64-' in name):
- atype = 'mltask'
- else:
- atype = 'task'
+ atype = 'task'
elif ('image.bbclass' in " ".join(inherits)):
if name != "hob-image":
atype = 'image'
@@ -543,10 +540,7 @@ class RecipeListModel(gtk.ListStore):
elif (name == 'dummy-image' or name == 'dummy-toolchain'):
atype = 'dummy'
else:
- if ('lib32-' in name or 'lib64-' in name):
- atype = 'mlrecipe'
- else:
- atype = 'recipe'
+ atype = 'recipe'
self.set(self.append(), self.COL_NAME, item, self.COL_DESC, desc,
self.COL_LIC, lic, self.COL_GROUP, group,
We will not display multilib recipes and tasks in separate tabs, therefore remove the specific types. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> --- lib/bb/ui/crumbs/hoblistmodel.py | 10 ++-------- 1 files changed, 2 insertions(+), 8 deletions(-)