1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

Hob: Change "Just bake" to "Build image" as required

[Yocto #2160]

(Bitbake rev: 4ed5b8b862027755d5e9e480fd8a1d0250f7a3b7)

Signed-off-by: Shane Wang <shane.wang@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Shane Wang
2012-03-29 20:54:52 +08:00
committed by Richard Purdie
parent 407c93d3e8
commit 59ca1af3a1
@@ -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)