diff options
author | Peter Hoyes <Peter.Hoyes@arm.com> | 2023-04-27 16:01:40 +0100 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-05-06 07:54:54 -0400 |
commit | ffd9eb59c7d35c3f9acc29be661bdcd0c6332897 (patch) | |
tree | 304dc89c7f282c2222b8d386fcc27ed9bbb4d465 | |
parent | d10f6f9ae37b79a987ffa4ace980b6dfab158729 (diff) | |
download | meta-security-ffd9eb59c7d35c3f9acc29be661bdcd0c6332897.tar.gz |
meta-parsec/layer.conf: Insert addpylib declaration
Yocto mickledore introduced the addpylib directive for explicitly adding
layer paths to the PYTHONPATH.
Standalone OEQA test suite discovery does not require this directive but
it is required to import test cases from other layers, e.g. to extend
and modify the test cases.
Signed-off-by: Peter Hoyes <Peter.Hoyes@arm.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-parsec/conf/layer.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-parsec/conf/layer.conf b/meta-parsec/conf/layer.conf index a748d77..5451351 100644 --- a/meta-parsec/conf/layer.conf +++ b/meta-parsec/conf/layer.conf | |||
@@ -12,3 +12,5 @@ LAYERSERIES_COMPAT_parsec-layer = "kirkstone langdale" | |||
12 | 12 | ||
13 | LAYERDEPENDS_parsec-layer = "core clang-layer" | 13 | LAYERDEPENDS_parsec-layer = "core clang-layer" |
14 | BBLAYERS_LAYERINDEX_NAME_parsec-layer = "meta-parsec" | 14 | BBLAYERS_LAYERINDEX_NAME_parsec-layer = "meta-parsec" |
15 | |||
16 | addpylib ${LAYERDIR}/lib oeqa | ||