summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMingli Yu <mingli.yu@windriver.com>2022-12-12 10:35:20 +0800
committerBruce Ashfield <bruce.ashfield@gmail.com>2022-12-22 10:34:42 -0500
commitb7eaf24eb1e007aad05760771944a5a0d23f78ad (patch)
treed743a199afb26274928572153fdc46622bff7f1d
parentc2448d546c50b392a410c9e2a7014364852f895d (diff)
downloadmeta-cloud-services-b7eaf24eb1e007aad05760771944a5a0d23f78ad.tar.gz
layer.conf: add meta-virtualization to LAYERDEPENDS
Fix the below yocto compliance issue, the libibverbs under meta-virtualization provides virtual/libibverbs. ERROR: Nothing PROVIDES 'virtual/libibverbs' (but /build/layers/meta-cloud-services/recipes-extended/glusterfs/glusterfs_6.1.bb DEPENDS on or otherwise requires it). Close matches: virtual/libc virtual/libiconv virtual/librpc ERROR: Required build target 'meta-world-pkgdata' has no buildable providers. Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'glusterfs', 'virtual/libibverbs'] Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--conf/layer.conf6
1 files changed, 5 insertions, 1 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index dca6a10..e089b7d 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -8,4 +8,8 @@ BBFILE_COLLECTIONS += "cloud-services-layer"
8BBFILE_PATTERN_cloud-services-layer := "^${LAYERDIR}/" 8BBFILE_PATTERN_cloud-services-layer := "^${LAYERDIR}/"
9BBFILE_PRIORITY_cloud-services-layer = "5" 9BBFILE_PRIORITY_cloud-services-layer = "5"
10LAYERSERIES_COMPAT_cloud-services-layer = "langdale" 10LAYERSERIES_COMPAT_cloud-services-layer = "langdale"
11LAYERDEPENDS_cloud-services-layer = "core filesystems-layer networking-layer" 11LAYERDEPENDS_cloud-services-layer = "core \
12 filesystems-layer \
13 networking-layer \
14 virtualization-layer \
15"