# 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"