aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-04-01 20:14:14 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-05 15:13:40 +0100
commitcda92e27b40a40402d33bbe5f1722ca8846a7233 (patch)
tree32c0f656fad7749b49ff18d70f9011632c891515 /bitbake
parenta84e35328205ddf64bdd526741e73ba1b7e5fdf1 (diff)
downloadopenembedded-core-contrib-cda92e27b40a40402d33bbe5f1722ca8846a7233.tar.gz
Hob: Remove the recipe/task type for multilib
We will not display multilib recipes and tasks in separate tabs, therefore remove the specific types. (Bitbake rev: da69e665196714b0f2039c11f9f232db7b58bce3) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hoblistmodel.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
index 52abf00eb0..5dddffa327 100644
--- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
@@ -563,10 +563,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'
@@ -576,10 +573,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,