aboutsummaryrefslogtreecommitdiffstats
path: root/conf/layer.conf
blob: 5fecac67bde40c1e1dd8cfc5f6b0aaedba228c0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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 \
"