mirror of
git://git.yoctoproject.org/meta-selinux
synced 2026-01-01 13:58:04 +00:00
Since `9ec5a8a layer.conf: Drop sumo from LAYERSERIES_CORENAMES' and `9867924 layer.conf: Add thud to LAYERSERIES_CORENAMES' applied in oe-core, update LAYERSERIES_COMPAT `sumo' -> `thud' Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Joe MacDonald <joe@deserted.net>
27 lines
804 B
Plaintext
27 lines
804 B
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have a packages directory, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
|
|
|
# Let us add layer-specific bbappends which are only applied when that
|
|
# layer is included in our configuration
|
|
BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bbappend' % layer \
|
|
for layer in BBFILE_COLLECTIONS.split())}"
|
|
|
|
BBFILE_COLLECTIONS += "selinux"
|
|
BBFILE_PATTERN_selinux = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_selinux = "5"
|
|
|
|
# This should only be incremented on significant changes that will
|
|
# cause compatibility issues with other layers
|
|
LAYERVERSION_selinux = "1"
|
|
|
|
LAYERSERIES_COMPAT_selinux = "thud"
|
|
|
|
LAYERDEPENDS_selinux = " \
|
|
core \
|
|
meta-python \
|
|
"
|