From patchwork Thu Mar 29 12:54:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 3/8] Hob: Change "Just bake" to "Build image" as required Date: Thu, 29 Mar 2012 12:54:52 -0000 From: Shane Wang X-Patchwork-Id: 24855 Message-Id: To: bitbake-devel@lists.openembedded.org [Yocto #2160] Signed-off-by: Shane Wang --- bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py index 0f59dd9..8914b1c 100644 --- a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py +++ b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py @@ -227,11 +227,11 @@ class ImageConfigurationPage (HobPage): self.gtable.attach(self.view_packages_button, 20, 40, 30, 35) def create_config_build_button(self): - # Create the "Build packages" and "Just bake" buttons at the bottom + # Create the "Build packages" and "Build image" buttons at the bottom button_box = gtk.HBox(False, 6) - # create button "Just bake" - just_bake_button = HobButton("Just bake") + # create button "Build image" + just_bake_button = HobButton("Build image") just_bake_button.set_size_request(205, 49) just_bake_button.set_tooltip_text("Build image to get your target image") just_bake_button.connect("clicked", self.just_bake_button_clicked_cb)