1# 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 12LAYERSERIES_COMPAT_raspberrypi = "styhead walnascar" 13LAYERDEPENDS_raspberrypi = "core" 14 15# Additional license directories. 16LICENSE_PATH += "${LAYERDIR}/files/custom-licenses" 17 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. 23BBFILES_DYNAMIC += " \ 24 openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bb \ 25 openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bbappend \ 26 networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bb \ 27 networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bbappend \ 28 qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bb \ 29 qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \ 30 multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bb \ 31 multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bbappend \ 32 meta-python:${LAYERDIR}/dynamic-layers/meta-python/*/*/*.bb \ 33 meta-python:${LAYERDIR}/dynamic-layers/meta-python/*/*/*.bbappend \ 34" 35 36DEFAULT_TEST_SUITES:remove:rpi = "parselogs" 37DEFAULT_TEST_SUITES:append:rpi = " parselogs_rpi" 38