blob: 874701bf6458223ceb037de937739b3d9dfd927f (
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
|
# add this layer to the search path for bitbake
BBPATH .= ":${LAYERDIR}"
# specify where all bb and bbappend files for this layer are
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb"
BBFILES += "${LAYERDIR}/recipes-*/*/*.bbappend"
# name this layer
# (...and add it to bitbake's list of known layers)
BBFILE_COLLECTIONS += "schulung"
# specify the pattern that can be used to match file paths with this layer
BBFILE_PATTERN_schulung = "^${LAYERDIR}/"
# specify the priority of this layer
BBFILE_PRIORITY_schulung = "10"
# specify the version of this layer
# (should only be incremented on significant changes that will cause
# compatibility issues with other layers)
LAYERVERSION_schulung = "1"
# layers this layer depends on
# (look at the BBFILE_COLLECTIONS value in a layer's
# layer.conf to see what its name is)
LAYERDEPENDS_schulung = "core"
|