summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2018-05-23 15:02:57 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2018-05-24 16:08:02 -0400
commita633967872bc81a6e68c73242f20fa505499c843 (patch)
treef97f87c1bc3cbb165d9e70b65031bed64ca670e0
parent56023b07d74a321a3d6a146cf1f94bbd932be700 (diff)
downloadmeta-virtualization-a633967872bc81a6e68c73242f20fa505499c843.tar.gz
layer.conf: match layer dependencies as documented in the layer README
Several required layer dependencies have been added to the layer README but didn't have corresponding entries added to LAYERDEPENDS. Ensure these match. The 'selinux' layer dependency, is conditional on the 'xen' DISTRO_FEATURE but I see no way to make a conditional LAYERDEPENDS so this is left off for now. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--conf/layer.conf8
1 files changed, 7 insertions, 1 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index fa2e015e..eaef1b71 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -15,7 +15,13 @@ LICENSE_PATH += "${LAYERDIR}/files/custom-licenses"
15# cause compatibility issues with other layers 15# cause compatibility issues with other layers
16LAYERVERSION_virtualization-layer = "1" 16LAYERVERSION_virtualization-layer = "1"
17LAYERSERIES_COMPAT_virtualization-layer = "sumo" 17LAYERSERIES_COMPAT_virtualization-layer = "sumo"
18LAYERDEPENDS_virtualization-layer = "core networking-layer" 18LAYERDEPENDS_virtualization-layer = " \
19 core \
20 openembedded-layer \
21 networking-layer \
22 filesystems-layer \
23 meta-python \
24"
19 25
20# Override security flags 26# Override security flags
21require conf/distro/include/virt_security_flags.inc 27require conf/distro/include/virt_security_flags.inc