blob: bbdce1458c9528bb5ced1328452baabcbc9ec144 [file] [log] [blame]
Patrick Williams8b8bc412016-08-17 15:02:23 -05001# We have a conf and classes directory, append to BBPATH
2BBPATH .= ":${LAYERDIR}"
3
4# We have a recipes directory containing .bb and .bbappend files, add to BBFILES
5BBFILES += "${LAYERDIR}/recipes*/*/*.bb \
6 ${LAYERDIR}/recipes*/*/*.bbappend"
7
8BBFILE_COLLECTIONS += "raspberrypi"
9BBFILE_PATTERN_raspberrypi := "^${LAYERDIR}/"
10BBFILE_PRIORITY_raspberrypi = "9"
11
12# Additional license directories.
13LICENSE_PATH += "${LAYERDIR}/files/custom-licenses"
14
Brad Bishopd7bf8c12018-02-25 22:55:05 -050015# The dynamic-layers directory hosts the extensions and layer specific
16# modifications.
17#
18# The .bbappend and .bb files are included if the respective layer
19# collection is available.
20BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bbappend' % layer \
21 for layer in BBFILE_COLLECTIONS.split())}"
22BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bb' % layer \
23 for layer in BBFILE_COLLECTIONS.split())}"