Patrick Williams | 8b8bc41 | 2016-08-17 15:02:23 -0500 | [diff] [blame] | 1 | # We have a conf and classes directory, append to BBPATH |
| 2 | BBPATH .= ":${LAYERDIR}" |
| 3 | |
| 4 | # We have a recipes directory containing .bb and .bbappend files, add to BBFILES |
| 5 | BBFILES += "${LAYERDIR}/recipes*/*/*.bb \ |
| 6 | ${LAYERDIR}/recipes*/*/*.bbappend" |
| 7 | |
| 8 | BBFILE_COLLECTIONS += "raspberrypi" |
| 9 | BBFILE_PATTERN_raspberrypi := "^${LAYERDIR}/" |
| 10 | BBFILE_PRIORITY_raspberrypi = "9" |
| 11 | |
Andrew Geissler | 26e4bea | 2020-11-30 19:54:03 -0600 | [diff] [blame] | 12 | LAYERSERIES_COMPAT_raspberrypi = "gatesgarth hardknott" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 13 | |
Patrick Williams | 8b8bc41 | 2016-08-17 15:02:23 -0500 | [diff] [blame] | 14 | # Additional license directories. |
| 15 | LICENSE_PATH += "${LAYERDIR}/files/custom-licenses" |
| 16 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 17 | # 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. |
| 22 | BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bbappend' % layer \ |
| 23 | for layer in BBFILE_COLLECTIONS.split())}" |
| 24 | BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bb' % layer \ |
| 25 | for layer in BBFILE_COLLECTIONS.split())}" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 26 | |
| 27 | BBFILES_DYNAMIC += " \ |
Andrew Geissler | 1c34914 | 2019-02-19 19:49:56 -0600 | [diff] [blame] | 28 | openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bb \ |
| 29 | openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bbappend \ |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 30 | networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bb \ |
| 31 | networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bbappend \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 32 | qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bb \ |
| 33 | qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \ |
Andrew Geissler | 5c4154f | 2020-10-16 10:13:56 -0500 | [diff] [blame] | 34 | multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bb \ |
| 35 | multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bbappend \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 36 | " |
Andrew Geissler | 062316f | 2020-05-15 14:19:14 -0500 | [diff] [blame] | 37 | |
| 38 | DEFAULT_TEST_SUITES_remove_rpi = "parselogs" |
| 39 | DEFAULT_TEST_SUITES_append_rpi = " parselogs_rpi" |