diff options
author | Cristiana Voicu <cristiana.voicu@intel.com> | 2013-07-25 08:25:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-06 13:02:27 +0100 |
commit | e76fdac6f15f2f80ed888db0dba38b2d2d1db35c (patch) | |
tree | 6d59ffea8a448745fc53e071eaffc3c122390181 /bitbake/lib/bb/ui | |
parent | 4182c53e56221203ca4448aca623cbb923544f33 (diff) | |
download | poky-e76fdac6f15f2f80ed888db0dba38b2d2d1db35c.tar.gz |
bitbake: hob/imageconfigurationpage: changes to image combobox
Place the "Create your own image recipe" field to the
end of the image recipes list.
[YOCTO #4193]
(Bitbake rev: 288bbda31164efffd07a370a728a7682db775c08)
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py index e1211bc6d3..dcf1334aac 100644 --- a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py +++ b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py | |||
@@ -456,7 +456,6 @@ class ImageConfigurationPage (HobPage): | |||
456 | cnt = cnt + 1 | 456 | cnt = cnt + 1 |
457 | 457 | ||
458 | self.image_combo.append_text(self.__custom_image__) | 458 | self.image_combo.append_text(self.__custom_image__) |
459 | self.image_combo.append_text(self.builder.recipe_model.__custom_image__) | ||
460 | self.image_combo.append_text("--Separator--") | 459 | self.image_combo.append_text("--Separator--") |
461 | cnt = cnt + 3 | 460 | cnt = cnt + 3 |
462 | 461 | ||
@@ -493,6 +492,7 @@ class ImageConfigurationPage (HobPage): | |||
493 | if image_name == selected_image: | 492 | if image_name == selected_image: |
494 | active = cnt | 493 | active = cnt |
495 | cnt = cnt + 1 | 494 | cnt = cnt + 1 |
495 | self.image_combo.append_text(self.builder.recipe_model.__custom_image__) | ||
496 | 496 | ||
497 | if self.custom_image_selected: | 497 | if self.custom_image_selected: |
498 | self.image_combo.append_text("--Separator--") | 498 | self.image_combo.append_text("--Separator--") |