mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-15 15:37:15 +00:00
b8b0d88d58
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: I7e8640a0688e5eb0a1c1d91202004f9b27731b1b Signed-off-by: Jon Mason <jon.mason@arm.com>
36 lines
1.0 KiB
Plaintext
36 lines
1.0 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 = "dunfell"
|
|
|
|
# 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"
|
|
|
|
# Directory of our distro config files
|
|
ARM_AUTONOMY_DISTRO_CFGDIR = "${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 \
|
|
"
|