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:24:22 +0100
commit5051f59976de4e099bb434aeea414de5a67a069f (patch)
treecf6054ad7ebc78fe3c098118c612dda8b5b8a357
parent42601a5edef0316767b952b162123534aa8fee18 (diff)
downloadbitbake-5051f59976de4e099bb434aeea414de5a67a069f.tar.gz
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. Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/ui/crumbs/hig/advancedsettingsdialog.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py b/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py
index 86a65aee3..5542471c7 100644
--- a/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py
+++ b/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py
@@ -234,7 +234,10 @@ class AdvancedSettingsDialog (CrumbsDialog, SettingsUIHelper):
article = ""
if image_type.startswith(("a", "e", "i", "o", "u")):
article = "n"
- self.image_types_checkbuttons[image_type].set_tooltip_text("Build a%s %s image" % (article, image_type))
+ if image_type == "live":
+ self.image_types_checkbuttons[image_type].set_tooltip_text("Build iso and hddimg images")
+ else:
+ self.image_types_checkbuttons[image_type].set_tooltip_text("Build a%s %s image" % (article, image_type))
table.attach(self.image_types_checkbuttons[image_type], j - 1, j + 3, i, i + 1)
if image_type in self.configuration.image_fstypes.split():
self.image_types_checkbuttons[image_type].set_active(True)