Openembedded Bitbake Development
 help / color / mirror / Atom feed
* [PATCH 0/1] Hob fixing: fixed unfunctional toolchain.
@ 2012-04-13  8:37 Lianhao Lu
  2012-04-13  8:37 ` [PATCH 1/1] Hob: Added required packages for toolchain Lianhao Lu
  0 siblings, 1 reply; 2+ messages in thread
From: Lianhao Lu @ 2012-04-13  8:37 UTC (permalink / raw)
  To: bitbake-devel

This fixed the Yocto bug #2274, generating an unfunctional toolchain based 
on image profile minimal.

The following changes since commit 3c2808b67384e92601cbd66877c36ca40df7c7ba:
  Shane Wang (1):
        Hob: fix the missing functions

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib llu/bug2274
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=llu/bug2274

Lianhao Lu (1):
  Hob: Added required packages for toolchain.

 lib/bb/ui/crumbs/hoblistmodel.py |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)




^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] Hob: Added required packages for toolchain.
  2012-04-13  8:37 [PATCH 0/1] Hob fixing: fixed unfunctional toolchain Lianhao Lu
@ 2012-04-13  8:37 ` Lianhao Lu
  0 siblings, 0 replies; 2+ messages in thread
From: Lianhao Lu @ 2012-04-13  8:37 UTC (permalink / raw)
  To: bitbake-devel

Added the requried packages task-core-standalone-sdk-target(-dbg) for
building toolchain.

Fixed bug [YOCTO #2274]

Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
---
 lib/bb/ui/crumbs/hoblistmodel.py |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/lib/bb/ui/crumbs/hoblistmodel.py b/lib/bb/ui/crumbs/hoblistmodel.py
index f5e3740..dd93e2a 100644
--- a/lib/bb/ui/crumbs/hoblistmodel.py
+++ b/lib/bb/ui/crumbs/hoblistmodel.py
@@ -42,6 +42,8 @@ class PackageListModel(gtk.TreeStore):
                                 ()),
     }
 
+    __toolchain_required_packages__ = ["task-core-standalone-sdk-target", "task-core-standalone-sdk-target-dbg"]
+
     def __init__(self):
 
         self.contents = None
@@ -389,7 +391,7 @@ class PackageListModel(gtk.TreeStore):
                     child_it = self.iter_next(child_it)
             it = self.iter_next(it)
 
-        return packagelist
+        return list(set(packagelist + self.__toolchain_required_packages__));
     """
     Return the selected package size, unit is B.
     """
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-04-13  8:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-13  8:37 [PATCH 0/1] Hob fixing: fixed unfunctional toolchain Lianhao Lu
2012-04-13  8:37 ` [PATCH 1/1] Hob: Added required packages for toolchain Lianhao Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox