mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-16 03:47:19 +00:00
48720822d6
meta-arm-autonomy requires the bridge-utils package, which is provided by the meta-openembedded/meta-networking layer. This patch adds the explicit dependency. Issue-Id: SCM-2166 Signed-off-by: Richard Neill <richard.neill@arm.com> Change-Id: If2a79755ac1f16fafa994e16ac980a37999692db Signed-off-by: Jon Mason <jon.mason@arm.com>
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 = "6"
|
|
LAYERDEPENDS_meta-arm-autonomy = " \
|
|
core \
|
|
yocto \
|
|
openembedded-layer \
|
|
networking-layer \
|
|
virtualization-layer \
|
|
"
|
|
LAYERSERIES_COMPAT_meta-arm-autonomy = "gatesgarth"
|
|
|
|
# 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-gem5:${LAYERDIR}/dynamic-layers/meta-gem5/*/*/*.bbappend \
|
|
"
|
|
# 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"
|