summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hoblistmodel.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hoblistmodel.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
index dd93e2a4c0..e7836c5503 100644
--- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
@@ -618,22 +618,6 @@ class RecipeListModel(gtk.ListStore):
618 return self[item_path][self.COL_INC] 618 return self[item_path][self.COL_INC]
619 619
620 """ 620 """
621 Append a certain image into the combobox
622 """
623 def image_list_append(self, name, deps, install):
624 # check whether a certain image is there
625 if not name or self.find_path_for_item(name):
626 return
627 it = self.append()
628 self.set(it, self.COL_NAME, name, self.COL_DESC, "",
629 self.COL_LIC, "", self.COL_GROUP, "",
630 self.COL_DEPS, deps, self.COL_BINB, "",
631 self.COL_TYPE, "image", self.COL_INC, False,
632 self.COL_IMG, False, self.COL_INSTALL, install,
633 self.COL_PN, name)
634 self.pn_path[name] = self.get_path(it)
635
636 """
637 Add this item, and any of its dependencies, to the image contents 621 Add this item, and any of its dependencies, to the image contents
638 """ 622 """
639 def include_item(self, item_path, binb="", image_contents=False): 623 def include_item(self, item_path, binb="", image_contents=False):