summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2012-09-19 10:36:57 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-20 11:56:31 +0100
commit1e8b5356959afcaa4f8f394b199412a2300e1e44 (patch)
tree7526170915acdc020fd6dc58d02a3c4d46de3109
parent3d6229535c7030f0d866235a56f1d8afcc95292a (diff)
downloadpoky-1e8b5356959afcaa4f8f394b199412a2300e1e44.tar.gz
bitbake: hob/packageselectionpage: "Cancel" button returns to "Image configuration" screen
Once package building completes, you can customise the list of packages that will go into the final image. Once you have made the changes you need, you can either build your image, or you can exit the process and go back to the 'Image configuration' screen by selecting 'Cancel'. [YOCTO #3105] (Bitbake rev: c5fd1824c9794923576ec1e747536c0430542fd1) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/packageselectionpage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
index edbafbd3a5..7e7828b332 100755
--- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
@@ -188,7 +188,7 @@ class PackageSelectionPage (HobPage):
188 188
189 def back_button_clicked_cb(self, button): 189 def back_button_clicked_cb(self, button):
190 if self.builder.current_step == self.builder.PACKAGE_GENERATED: 190 if self.builder.current_step == self.builder.PACKAGE_GENERATED:
191 self.builder.show_recipes() 191 self.builder.show_configuration()
192 elif self.builder.previous_step == self.builder.IMAGE_GENERATED: 192 elif self.builder.previous_step == self.builder.IMAGE_GENERATED:
193 self.builder.restore_initial_selected_packages() 193 self.builder.restore_initial_selected_packages()
194 self.refresh_selection() 194 self.refresh_selection()