blob: c4a3f43f04e641b299eb102ff29321d4a9916b68 [file] [log] [blame]
Brad Bishop93fb5352015-09-09 03:59:20 +00001# We have a conf and classes directory, add to BBPATH
2BBPATH .= ":${LAYERDIR}"
3
4# We have recipes-* directories, add to BBFILES
Brad Bishopff075f62018-08-31 06:25:51 -04005BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
6 ${LAYERDIR}/recipes-*/*/*.bbappend"
Brad Bishop93fb5352015-09-09 03:59:20 +00007
Brad Bishopfb40bef2018-06-18 23:09:13 -04008BBFILE_COLLECTIONS += "phosphor-layer"
9BBFILE_PATTERN_phosphor-layer = "^${LAYERDIR}/"
10LAYERVERSION_phosphor-layer = "1"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080011LAYERSERIES_COMPAT_phosphor-layer = "thud"
Brad Bishop93fb5352015-09-09 03:59:20 +000012
13# Provide a variable that points the base of the phosphor layer.
14PHOSPHORBASE = '${@os.path.normpath("${LAYERDIR}/")}'
Yong Li669b0be2017-12-19 22:06:00 +080015
16IMAGE_FEATURES[validitems] += "tools-profile"
17
Brad Bishop01ddfab2018-03-23 23:32:26 -040018# Let us add layer-specific bbappends which are only applied when that
19# layer is included in our configuration
20BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bbappend' % layer \
21 for layer in BBFILE_COLLECTIONS.split())}"
22# Add layer-specific bb files too
23BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bb' % layer \
24 for layer in BBFILE_COLLECTIONS.split())}"