blob: 019e76be8354986c4cf93654d5c5f422c54afaa2 [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 Bishop19323692019-04-05 15:28:33 -040012LAYERSERIES_COMPAT_raspberrypi = "sumo thud warrior"
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 += " \
Andrew Geissler1c349142019-02-19 19:49:56 -060028 openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bb \
29 openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bbappend \
Brad Bishop26bdd442019-08-16 17:08:17 -040030 networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bb \
31 networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bbappend \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080032 qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bb \
33 qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \
34"