From 4c96451fa500b13f0ff748fe7a85859c0573b311 Mon Sep 17 00:00:00 2001 From: Cristiana Voicu Date: Fri, 2 Aug 2013 14:57:55 +0000 Subject: bitbake: hob/advancedsettings: change toolchain labels to sdk labels In order to be easier for the user to understand, we have changed the toolchain labels to sdk. [YOCTO #3808] (Bitbake rev: 008afbcf6b1b315eb5463ecfb39fc50e6303687e) Signed-off-by: Cristiana Voicu Signed-off-by: Richard Purdie --- .../lib/bb/ui/crumbs/hig/advancedsettingsdialog.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'bitbake/lib/bb/ui/crumbs') diff --git a/bitbake/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py b/bitbake/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py index bbcaba8c70..86a65aee35 100644 --- a/bitbake/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py +++ b/bitbake/lib/bb/ui/crumbs/hig/advancedsettingsdialog.py @@ -131,7 +131,7 @@ class AdvancedSettingsDialog (CrumbsDialog, SettingsUIHelper): self.rootfs_size_spinner = None self.extra_size_spinner = None self.gplv3_checkbox = None - self.toolchain_checkbox = None + self.sdk_checkbox = None self.image_types_checkbuttons = {} self.md5 = self.config_md5() @@ -286,16 +286,17 @@ class AdvancedSettingsDialog (CrumbsDialog, SettingsUIHelper): self.gplv3_checkbox.set_active(False) advanced_vbox.pack_start(self.gplv3_checkbox, expand=False, fill=False) - advanced_vbox.pack_start(self.gen_label_widget('Toolchain'), expand=False, fill=False) + advanced_vbox.pack_start(self.gen_label_widget('SDK'), expand=False, fill=False) sub_hbox = gtk.HBox(False, 6) advanced_vbox.pack_start(sub_hbox, expand=False, fill=False) - self.toolchain_checkbox = gtk.CheckButton("Build toolchain") - self.toolchain_checkbox.set_tooltip_text("Check this box to build the related toolchain with your image") - self.toolchain_checkbox.set_active(self.configuration.toolchain_build) - sub_hbox.pack_start(self.toolchain_checkbox, expand=False, fill=False) - - tooltip = "Selects the host platform for which you want to run the toolchain" - sdk_machine_widget, self.sdk_machine_combo = self.gen_combo_widget(self.configuration.curr_sdk_machine, self.all_sdk_machines,"Build toolchain" + "*" + tooltip) + self.sdk_checkbox = gtk.CheckButton("Populate SDK") + tooltip = "Check this box to generate an SDK tarball that consists of the cross-toolchain and a sysroot that contains development packages for your image." + self.sdk_checkbox.set_tooltip_text(tooltip) + self.sdk_checkbox.set_active(self.configuration.toolchain_build) + sub_hbox.pack_start(self.sdk_checkbox, expand=False, fill=False) + + tooltip = "Select the host platform for which you want to run the toolchain contained in the SDK tarball." + sdk_machine_widget, self.sdk_machine_combo = self.gen_combo_widget(self.configuration.curr_sdk_machine, self.all_sdk_machines,"Populate SDK" + "*" + tooltip) sub_hbox.pack_start(sdk_machine_widget, expand=False, fill=False) return advanced_vbox @@ -330,7 +331,7 @@ class AdvancedSettingsDialog (CrumbsDialog, SettingsUIHelper): self.configuration.incompat_license = " ".join(self.configuration.incompat_license or []) self.configuration.incompat_license = self.configuration.incompat_license.strip() - self.configuration.toolchain_build = self.toolchain_checkbox.get_active() + self.configuration.toolchain_build = self.sdk_checkbox.get_active() self.configuration.curr_sdk_machine = self.sdk_machine_combo.get_active_text() md5 = self.config_md5() self.settings_changed = (self.md5 != md5) -- cgit v1.2.3-54-g00ecf