summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
diff options
context:
space:
mode:
authorLiming An <limingx.l.an@intel.com>2012-05-21 22:41:20 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-22 14:56:17 +0100
commit39a9267dee0a0ee4d87ed51d4a0272549c462b02 (patch)
tree225d38aa8b79fc8245dc6d559fcd70db8918ee94 /bitbake/lib/bb/ui/crumbs/hoblistmodel.py
parent532f96ddcc2e3641db25b08d4ca93ce4d196a984 (diff)
downloadpoky-39a9267dee0a0ee4d87ed51d4a0272549c462b02.tar.gz
Hob: add '--select a machine--' and '--select a base image--' to GUI
[YOCTO #2175] (Bitbake rev: 2729729012f035043fedc5098be2ec12b761166d) Signed-off-by: Liming An <limingx.l.an@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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
index 0b54f91a12..37cee78325 100644
--- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
@@ -456,7 +456,7 @@ class RecipeListModel(gtk.ListStore):
456 """ 456 """
457 (COL_NAME, COL_DESC, COL_LIC, COL_GROUP, COL_DEPS, COL_BINB, COL_TYPE, COL_INC, COL_IMG, COL_INSTALL, COL_PN, COL_FADE_INC) = range(12) 457 (COL_NAME, COL_DESC, COL_LIC, COL_GROUP, COL_DEPS, COL_BINB, COL_TYPE, COL_INC, COL_IMG, COL_INSTALL, COL_PN, COL_FADE_INC) = range(12)
458 458
459 __dummy_image__ = "Create your own image" 459 __custom_image__ = "Create your own image"
460 460
461 __gsignals__ = { 461 __gsignals__ = {
462 "recipe-selection-changed" : (gobject.SIGNAL_RUN_LAST, 462 "recipe-selection-changed" : (gobject.SIGNAL_RUN_LAST,
@@ -565,14 +565,14 @@ class RecipeListModel(gtk.ListStore):
565 self.clear() 565 self.clear()
566 566
567 # dummy image for prompt 567 # dummy image for prompt
568 self.set(self.append(), self.COL_NAME, self.__dummy_image__, 568 self.set(self.append(), self.COL_NAME, self.__custom_image__,
569 self.COL_DESC, "Use the 'View recipes' and 'View packages' " \ 569 self.COL_DESC, "Use the 'View recipes' and 'View packages' " \
570 "options to select what you want to include " \ 570 "options to select what you want to include " \
571 "in your image.", 571 "in your image.",
572 self.COL_LIC, "", self.COL_GROUP, "", 572 self.COL_LIC, "", self.COL_GROUP, "",
573 self.COL_DEPS, "", self.COL_BINB, "", 573 self.COL_DEPS, "", self.COL_BINB, "",
574 self.COL_TYPE, "image", self.COL_INC, False, 574 self.COL_TYPE, "image", self.COL_INC, False,
575 self.COL_IMG, False, self.COL_INSTALL, "", self.COL_PN, self.__dummy_image__) 575 self.COL_IMG, False, self.COL_INSTALL, "", self.COL_PN, self.__custom_image__)
576 576
577 for item in event_model["pn"]: 577 for item in event_model["pn"]:
578 name = item 578 name = item