summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-04-13 21:51:36 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-14 14:43:24 +0100
commit83cc0a118f4c7a5663097df9b117b8bebd77713a (patch)
tree2cc2113f121ebf1ab948598252439f092a2001e4 /bitbake/lib/bb/ui/crumbs/hoblistmodel.py
parentac998632f75a9314d600126e7b479fc602804a20 (diff)
downloadpoky-83cc0a118f4c7a5663097df9b117b8bebd77713a.tar.gz
Hob: Save the original image name into template
Previously we use the template file name as the image name. This commit changes to use the original selected image into template file. (Bitbake rev: 14a9da66fe08d181f45853c52e0c9f14773070a8) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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):