diff options
author | Cristiana Voicu <cristiana.voicu@intel.com> | 2012-09-19 10:36:57 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-20 11:56:31 +0100 |
commit | 1e8b5356959afcaa4f8f394b199412a2300e1e44 (patch) | |
tree | 7526170915acdc020fd6dc58d02a3c4d46de3109 /bitbake/lib | |
parent | 3d6229535c7030f0d866235a56f1d8afcc95292a (diff) | |
download | poky-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>
Diffstat (limited to 'bitbake/lib')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 2 |
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() |