mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-01-12 03:10:15 +00:00
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
# 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 = "5"
|
|
LAYERDEPENDS_meta-arm-autonomy = " \
|
|
core \
|
|
yocto \
|
|
openembedded-layer \
|
|
networking-layer \
|
|
virtualization-layer \
|
|
"
|
|
LAYERSERIES_COMPAT_meta-arm-autonomy = "hardknott honister"
|
|
|
|
# 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"
|
|
|
|
ARM_AUTONOMY_LAYERDIR := "${LAYERDIR}"
|
|
# Directory of our distro config files
|
|
ARM_AUTONOMY_DISTRO_CFGDIR = "${ARM_AUTONOMY_LAYERDIR}/conf/distro/include/"
|
|
|
|
# Add class to handle arm-autonomy distro extensions
|
|
USER_CLASSES:append = " arm-autonomy-features"
|
|
|
|
BBFILES_DYNAMIC += " \
|
|
meta-arm-bsp:${LAYERDIR}/dynamic-layers/meta-arm-bsp/*/*/*.bbappend \
|
|
meta-arm-bsp:${LAYERDIR}/dynamic-layers/meta-arm-bsp/*/*/*.bb \
|
|
"
|
|
# Root directory for the meta-arm-autonomy/dynamic-layers/meta-arm-bsp
|
|
ARM_AUTONOMY_ARM_BSP_DYNAMIC_DIR = "${ARM_AUTONOMY_LAYERDIR}/dynamic-layers/meta-arm-bsp"
|