12345678910111213141516171819202122232425 |
- # Add layer to BBPATH
- BBPATH .= ":${LAYERDIR}"
- # Add recipes-* directories to BBFILES
- BBFILES += " \
- ${LAYERDIR}/recipes-*/*/*.bb \
- ${LAYERDIR}/recipes-*/*/*.bbappend \
- "
- BBFILE_COLLECTIONS += "meta-arm-autonomy"
- BBFILE_PATTERN_meta-arm-autonomy = "^${LAYERDIR}/"
- BBFILE_PRIORITY_meta-arm-autonomy = "6"
- LAYERDEPENDS_meta-arm-autonomy = " \
- core \
- yocto \
- openembedded-layer \
- virtualization-layer \
- "
- LAYERSERIES_COMPAT_meta-arm-autonomy = "zeus"
- # We don't activate virtualization feature from meta-virtualization as it
- # brings in lots of stuff we don't need. We need to disable the sanity check
- # otherwise the user will see a warning on each build.
- SKIP_META_VIRT_SANITY_CHECK = "1"
|