]> code.ossystems Code Review - openembedded-core.git/commit
devtool: stop always moving workspace to end of BBLAYERS
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Fri, 13 Oct 2017 03:49:34 +0000 (16:49 +1300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 10 Nov 2017 14:44:31 +0000 (14:44 +0000)
commit284426dbad91a3c52eaf7da5c58fe8a2c2dfb826
treeb7f3b9c03ca9c4a90dee3bfe3922892fb5806778
parentb0bfa1b1f4377270af9e7f19949cc1781a4e3b9d
devtool: stop always moving workspace to end of BBLAYERS

I noticed that using bitbake-layers add-layer followed by a devtool
command resulted in bitbake re-parsing all of the recipes, which is
annoying. Upon closer inspection I could see that devtool was moving the
workspace layer path to the end of BBLAYERS if it happened to be
somewhere in the middle - there's no need for it to be doing this. This
occurred because we were passing the current workspace path to remove
and the "new" path to add even if the path is not being changed, and I
think earlier versions of bb.utils.edit_bblayers_conf() didn't move the
existing entry under these circumstances as it clearly does now. Fix it
so we only pass the path to be removed if we're actually changing the
path.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
scripts/devtool