blob: 6e2fdf663060fe9944db8c1653e88c754722f49b [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
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080012LAYERSERIES_COMPAT_raspberrypi = "sumo thud"
Brad Bishop316dfdd2018-06-25 12:45:53 -040013
Patrick Williams8b8bc412016-08-17 15:02:23 -050014# Additional license directories.
15LICENSE_PATH += "${LAYERDIR}/files/custom-licenses"
16
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017# The dynamic-layers directory hosts the extensions and layer specific
18# modifications.
19#
20# The .bbappend and .bb files are included if the respective layer
21# collection is available.
22BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bbappend' % layer \
23 for layer in BBFILE_COLLECTIONS.split())}"
24BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bb' % layer \
25 for layer in BBFILE_COLLECTIONS.split())}"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080026
27BBFILES_DYNAMIC += " \
28 qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bb \
29 qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \
30"