layer.conf 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # We have a conf and classes directory, append to BBPATH
  2. BBPATH .= ":${LAYERDIR}"
  3. # We have a recipes directory containing .bb and .bbappend files, add to BBFILES
  4. BBFILES += "${LAYERDIR}/recipes*/*/*.bb \
  5. ${LAYERDIR}/recipes*/*/*.bbappend"
  6. BBFILE_COLLECTIONS += "raspberrypi"
  7. BBFILE_PATTERN_raspberrypi := "^${LAYERDIR}/"
  8. BBFILE_PRIORITY_raspberrypi = "9"
  9. LAYERSERIES_COMPAT_raspberrypi = "styhead walnascar"
  10. LAYERDEPENDS_raspberrypi = "core"
  11. # Additional license directories.
  12. LICENSE_PATH += "${LAYERDIR}/files/custom-licenses"
  13. # The dynamic-layers directory hosts the extensions and layer specific
  14. # modifications.
  15. #
  16. # The .bbappend and .bb files are included if the respective layer
  17. # collection is available.
  18. BBFILES_DYNAMIC += " \
  19. openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bb \
  20. openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bbappend \
  21. networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bb \
  22. networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bbappend \
  23. qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bb \
  24. qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \
  25. multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bb \
  26. multimedia-layer:${LAYERDIR}/dynamic-layers/multimedia-layer/*/*/*.bbappend \
  27. meta-python:${LAYERDIR}/dynamic-layers/meta-python/*/*/*.bb \
  28. meta-python:${LAYERDIR}/dynamic-layers/meta-python/*/*/*.bbappend \
  29. "
  30. DEFAULT_TEST_SUITES:remove:rpi = "parselogs"
  31. DEFAULT_TEST_SUITES:append:rpi = " parselogs_rpi"