bitbake: hob: don't reorder layers list

We cannot reorder this list - it must stay in the order shown in the
dialog (which may in future be configurable by the user).

Fixes [YOCTO #2649].

(Bitbake rev: eca0352195d2d8ae8ef15baab9737884ec674a46)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Eggleton 2012-09-11 17:51:59 +01:00 committed by Richard Purdie
parent ffc3b5ded3
commit beb6815226
1 changed files with 2 additions and 11 deletions

View File

@ -1029,14 +1029,8 @@ class LayerSelectionDialog (CrumbsDialog):
table_layer.attach(scroll, 0, 10, 0, 1)
layer_store = gtk.ListStore(gobject.TYPE_STRING)
core_iter = None
for layer in layers:
if layer.endswith("/meta"):
core_iter = layer_store.prepend([layer])
elif layer.endswith("/meta-hob") and core_iter:
layer_store.insert_after(core_iter, [layer])
else:
layer_store.append([layer])
layer_store.append([layer])
col1 = gtk.TreeViewColumn('Enabled')
layer_tv.append_column(col1)
@ -1110,10 +1104,7 @@ class LayerSelectionDialog (CrumbsDialog):
layers.append(model.get_value(it, 0))
it = model.iter_next(it)
orig_layers = sorted(self.layers)
layers.sort()
self.layers_changed = (orig_layers != layers)
self.layers_changed = (self.layers != layers)
self.layers = layers
"""