mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 00:32:13 +02:00
devtool: Load plugins in a well defined order
To allow devtool plugins in one layer to shadow another in a well defined way, first search BBPATH/lib/devtool directories and then scripts/lib/devool and load only the first found. The previous search and load loop would load all found plugins with the ones found later replacing any found before. (From OE-Core rev: 1b2b8a0a80de17ea053002fdd124055d2798029a) Signed-off-by: Ola x Nilsson <ola.x.nilsson@axis.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2765231499
commit
14abe7982c
@@ -294,7 +294,8 @@ def main():
|
||||
finally:
|
||||
tinfoil.shutdown()
|
||||
|
||||
for path in [scripts_path] + global_args.bbpath.split(':'):
|
||||
# Search BBPATH first to allow layers to override plugins in scripts_path
|
||||
for path in global_args.bbpath.split(':') + [scripts_path]:
|
||||
pluginpath = os.path.join(path, 'lib', 'devtool')
|
||||
scriptutils.load_plugins(logger, plugins, pluginpath)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user