diff options
author | Beth Flanagan <elizabeth.flanagan@intel.com> | 2012-04-16 16:13:08 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-17 11:41:31 +0100 |
commit | 993c46751097e3528adbae51f21b4607cd964cdb (patch) | |
tree | 5c94f21477e762b673efe75cc528fb7fd6c89343 | |
parent | 139a91d742ff00ec2be2bfbd9759101a250ebd23 (diff) | |
download | poky-993c46751097e3528adbae51f21b4607cd964cdb.tar.gz |
hoblistmodel.py: description for selfcreated image
The current description is empty. This adds a default
description for hob's dummy_image.
(Bitbake rev: 68a65e5eeeb01d78444f1e5b5d1bb7b21c9d0b2c)
Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hoblistmodel.py | 4 |
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 e7836c5503..3f534328ae 100644 --- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py | |||
@@ -565,7 +565,9 @@ class RecipeListModel(gtk.ListStore): | |||
565 | 565 | ||
566 | # dummy image for prompt | 566 | # dummy image for prompt |
567 | self.set(self.append(), self.COL_NAME, self.__dummy_image__, | 567 | self.set(self.append(), self.COL_NAME, self.__dummy_image__, |
568 | self.COL_DESC, "", | 568 | self.COL_DESC, "Use the 'View recipes' and 'View packages' " \ |
569 | "options to select what you want to include " \ | ||
570 | "in your image.", | ||
569 | self.COL_LIC, "", self.COL_GROUP, "", | 571 | self.COL_LIC, "", self.COL_GROUP, "", |
570 | self.COL_DEPS, "", self.COL_BINB, "", | 572 | self.COL_DEPS, "", self.COL_BINB, "", |
571 | self.COL_TYPE, "image", self.COL_INC, False, | 573 | self.COL_TYPE, "image", self.COL_INC, False, |