blob: 2510f30fbc34dd45c8325ec72ce7980312373cbc [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
5BBFILES += "${LAYERDIR}/common/recipes-*/*/*.bb \
6 ${LAYERDIR}/common/recipes-*/*/*.bbappend"
7
8BBFILE_COLLECTIONS += "obmc-phosphor"
9BBFILE_PATTERN_obmc-phosphor = "^${LAYERDIR}/"
10LAYERVERSION_obmc-phosphor = "1"
11
12# Provide a variable that points the base of the phosphor layer.
13PHOSPHORBASE = '${@os.path.normpath("${LAYERDIR}/")}'
Yong Li669b0be2017-12-19 22:06:00 +080014
15IMAGE_FEATURES[validitems] += "tools-profile"
16
Brad Bishop01ddfab2018-03-23 23:32:26 -040017# Let us add layer-specific bbappends which are only applied when that
18# layer is included in our configuration
19BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bbappend' % layer \
20 for layer in BBFILE_COLLECTIONS.split())}"
21# Add layer-specific bb files too
22BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bb' % layer \
23 for layer in BBFILE_COLLECTIONS.split())}"