diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2012-04-01 20:14:14 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-05 15:13:40 +0100 |
commit | cda92e27b40a40402d33bbe5f1722ca8846a7233 (patch) | |
tree | 32c0f656fad7749b49ff18d70f9011632c891515 | |
parent | a84e35328205ddf64bdd526741e73ba1b7e5fdf1 (diff) | |
download | poky-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>
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hoblistmodel.py | 10 |
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): | |||
563 | depends = event_model["depends"].get(item, []) + event_model["rdepends-pn"].get(item, []) | 563 | depends = event_model["depends"].get(item, []) + event_model["rdepends-pn"].get(item, []) |
564 | 564 | ||
565 | if ('task-' in name): | 565 | if ('task-' in name): |
566 | if ('lib32-' in name or 'lib64-' in name): | 566 | atype = 'task' |
567 | atype = 'mltask' | ||
568 | else: | ||
569 | atype = 'task' | ||
570 | elif ('image.bbclass' in " ".join(inherits)): | 567 | elif ('image.bbclass' in " ".join(inherits)): |
571 | if name != "hob-image": | 568 | if name != "hob-image": |
572 | atype = 'image' | 569 | atype = 'image' |
@@ -576,10 +573,7 @@ class RecipeListModel(gtk.ListStore): | |||
576 | elif (name == 'dummy-image' or name == 'dummy-toolchain'): | 573 | elif (name == 'dummy-image' or name == 'dummy-toolchain'): |
577 | atype = 'dummy' | 574 | atype = 'dummy' |
578 | else: | 575 | else: |
579 | if ('lib32-' in name or 'lib64-' in name): | 576 | atype = 'recipe' |
580 | atype = 'mlrecipe' | ||
581 | else: | ||
582 | atype = 'recipe' | ||
583 | 577 | ||
584 | self.set(self.append(), self.COL_NAME, item, self.COL_DESC, desc, | 578 | self.set(self.append(), self.COL_NAME, item, self.COL_DESC, desc, |
585 | self.COL_LIC, lic, self.COL_GROUP, group, | 579 | self.COL_LIC, lic, self.COL_GROUP, group, |