layer.conf 716 B

12345678910111213141516171819202122232425
  1. # Add layer to BBPATH
  2. BBPATH .= ":${LAYERDIR}"
  3. # Add recipes-* directories to BBFILES
  4. BBFILES += " \
  5. ${LAYERDIR}/recipes-*/*/*.bb \
  6. ${LAYERDIR}/recipes-*/*/*.bbappend \
  7. "
  8. BBFILE_COLLECTIONS += "meta-arm-autonomy"
  9. BBFILE_PATTERN_meta-arm-autonomy = "^${LAYERDIR}/"
  10. BBFILE_PRIORITY_meta-arm-autonomy = "6"
  11. LAYERDEPENDS_meta-arm-autonomy = " \
  12. core \
  13. yocto \
  14. openembedded-layer \
  15. virtualization-layer \
  16. "
  17. LAYERSERIES_COMPAT_meta-arm-autonomy = "zeus"
  18. # We don't activate virtualization feature from meta-virtualization as it
  19. # brings in lots of stuff we don't need. We need to disable the sanity check
  20. # otherwise the user will see a warning on each build.
  21. SKIP_META_VIRT_SANITY_CHECK = "1"