| 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 | bd39bf6 | 2021-03-31 13:35:44 -0500 | [diff] [blame] | 12 | LAYERSERIES_COMPAT_raspberrypi = "hardknott honister" | 
| William A. Kennington III | a99e9b6 | 2021-06-02 12:47:56 -0700 | [diff] [blame] | 13 | LAYERDEPENDS_raspberrypi = "core" | 
| Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 14 |  | 
| Patrick Williams | 8b8bc41 | 2016-08-17 15:02:23 -0500 | [diff] [blame] | 15 | # Additional license directories. | 
|  | 16 | LICENSE_PATH += "${LAYERDIR}/files/custom-licenses" | 
|  | 17 |  | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 18 | # The dynamic-layers directory hosts the extensions and layer specific | 
|  | 19 | # modifications. | 
|  | 20 | # | 
|  | 21 | # The .bbappend and .bb files are included if the respective layer | 
|  | 22 | # collection is available. | 
|  | 23 | BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bbappend' % layer \ | 
|  | 24 | for layer in BBFILE_COLLECTIONS.split())}" | 
|  | 25 | BBFILES += "${@' '.join('${LAYERDIR}/dynamic-layers/%s/recipes*/*/*.bb' % layer \ | 
|  | 26 | for layer in BBFILE_COLLECTIONS.split())}" | 
| Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 27 |  | 
|  | 28 | BBFILES_DYNAMIC += " \ | 
| Andrew Geissler | 1c34914 | 2019-02-19 19:49:56 -0600 | [diff] [blame] | 29 | openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bb \ | 
|  | 30 | openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bbappend \ | 
| Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 31 | networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bb \ | 
|  | 32 | networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bbappend \ | 
| Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 33 | qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bb \ | 
|  | 34 | qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \ | 
| Andrew Geissler | 5c4154f | 2020-10-16 10:13:56 -0500 | [diff] [blame] | 35 | multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bb \ | 
|  | 36 | multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bbappend \ | 
| Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 37 | " | 
| Andrew Geissler | 062316f | 2020-05-15 14:19:14 -0500 | [diff] [blame] | 38 |  | 
|  | 39 | DEFAULT_TEST_SUITES_remove_rpi = "parselogs" | 
|  | 40 | DEFAULT_TEST_SUITES_append_rpi = " parselogs_rpi" |