mirror of
https://git.yoctoproject.org/meta-security
synced 2026-01-11 15:00:34 +00:00
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>
17 lines
501 B
Plaintext
17 lines
501 B
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have a recipes directory, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "parsec-layer"
|
|
BBFILE_PATTERN_parsec-layer = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_parsec-layer = "5"
|
|
|
|
LAYERSERIES_COMPAT_parsec-layer = "mickledore"
|
|
|
|
LAYERDEPENDS_parsec-layer = "core clang-layer"
|
|
BBLAYERS_LAYERINDEX_NAME_parsec-layer = "meta-parsec"
|
|
|
|
addpylib ${LAYERDIR}/lib oeqa
|