summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-10-07 18:21:46 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-10-07 16:25:02 +0100
commit5445f71fc812a5fcf9bd67a26a500284af16ad39 (patch)
treea2bebaf780eef08e54fccb8e8fa772ba24600963
parent5416b958be27fce1211af2e968df2779e730078d (diff)
downloadpoky-5445f71fc812a5fcf9bd67a26a500284af16ad39.tar.gz
bitbake: hob: change tooltip for live images
This change is needed to inform the user that selecting live type means that the system will build a hddimg and iso image. (Bitbake rev: 5051f59976de4e099bb434aeea414de5a67a069f) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py b/bitbake/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py
index 86a65aee35..5542471c7b 100644
--- a/bitbake/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py
+++ b/bitbake/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py
@@ -234,7 +234,10 @@ class AdvancedSettingsDialog (CrumbsDialog, SettingsUIHelper):
234 article = "" 234 article = ""
235 if image_type.startswith(("a", "e", "i", "o", "u")): 235 if image_type.startswith(("a", "e", "i", "o", "u")):
236 article = "n" 236 article = "n"
237 self.image_types_checkbuttons[image_type].set_tooltip_text("Build a%s %s image" % (article, image_type)) 237 if image_type == "live":
238 self.image_types_checkbuttons[image_type].set_tooltip_text("Build iso and hddimg images")
239 else:
240 self.image_types_checkbuttons[image_type].set_tooltip_text("Build a%s %s image" % (article, image_type))
238 table.attach(self.image_types_checkbuttons[image_type], j - 1, j + 3, i, i + 1) 241 table.attach(self.image_types_checkbuttons[image_type], j - 1, j + 3, i, i + 1)
239 if image_type in self.configuration.image_fstypes.split(): 242 if image_type in self.configuration.image_fstypes.split():
240 self.image_types_checkbuttons[image_type].set_active(True) 243 self.image_types_checkbuttons[image_type].set_active(True)