summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorLianhao Lu <lianhao.lu@intel.com>2012-04-13 16:37:18 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-13 12:04:19 +0100
commitfb918fb4db0867f97123de95f69d188f7d601168 (patch)
treec1a04313bd8a21c86d556c15c1eae7af20c41d2e /bitbake
parent811f7d8ebfe9d55b0244d8284a04b0ef6902adbb (diff)
downloadpoky-fb918fb4db0867f97123de95f69d188f7d601168.tar.gz
Hob: Added required packages for toolchain.
Added the requried packages task-core-standalone-sdk-target(-dbg) for building toolchain. Fixed bug [YOCTO #2274] (Bitbake rev: 434fdb3913cc78e2e9cdeede4c4fa7f1c8ef8892) Signed-off-by: Lianhao Lu <lianhao.lu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hoblistmodel.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
index f5e37402eb..dd93e2a4c0 100644
--- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
@@ -42,6 +42,8 @@ class PackageListModel(gtk.TreeStore):
42 ()), 42 ()),
43 } 43 }
44 44
45 __toolchain_required_packages__ = ["task-core-standalone-sdk-target", "task-core-standalone-sdk-target-dbg"]
46
45 def __init__(self): 47 def __init__(self):
46 48
47 self.contents = None 49 self.contents = None
@@ -389,7 +391,7 @@ class PackageListModel(gtk.TreeStore):
389 child_it = self.iter_next(child_it) 391 child_it = self.iter_next(child_it)
390 it = self.iter_next(it) 392 it = self.iter_next(it)
391 393
392 return packagelist 394 return list(set(packagelist + self.__toolchain_required_packages__));
393 """ 395 """
394 Return the selected package size, unit is B. 396 Return the selected package size, unit is B.
395 """ 397 """