diff options
author | Shane Wang <shane.wang@intel.com> | 2012-03-29 20:54:52 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-29 21:25:54 +0100 |
commit | 59ca1af3a1548642f4e5ac9c33ab6c3a449318ec (patch) | |
tree | 76dfb930ba4821ca081fc2adfe6c1572625b11c7 /bitbake/lib/bb | |
parent | 407c93d3e80d94d6d022cde32e813aba0407de4a (diff) | |
download | poky-59ca1af3a1548642f4e5ac9c33ab6c3a449318ec.tar.gz |
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>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | 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 0f59dd980a..8914b1cde0 100644 --- a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py +++ b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py | |||
@@ -227,11 +227,11 @@ class ImageConfigurationPage (HobPage): | |||
227 | self.gtable.attach(self.view_packages_button, 20, 40, 30, 35) | 227 | self.gtable.attach(self.view_packages_button, 20, 40, 30, 35) |
228 | 228 | ||
229 | def create_config_build_button(self): | 229 | def create_config_build_button(self): |
230 | # Create the "Build packages" and "Just bake" buttons at the bottom | 230 | # Create the "Build packages" and "Build image" buttons at the bottom |
231 | button_box = gtk.HBox(False, 6) | 231 | button_box = gtk.HBox(False, 6) |
232 | 232 | ||
233 | # create button "Just bake" | 233 | # create button "Build image" |
234 | just_bake_button = HobButton("Just bake") | 234 | just_bake_button = HobButton("Build image") |
235 | just_bake_button.set_size_request(205, 49) | 235 | just_bake_button.set_size_request(205, 49) |
236 | just_bake_button.set_tooltip_text("Build image to get your target image") | 236 | just_bake_button.set_tooltip_text("Build image to get your target image") |
237 | just_bake_button.connect("clicked", self.just_bake_button_clicked_cb) | 237 | just_bake_button.connect("clicked", self.just_bake_button_clicked_cb) |