summaryrefslogtreecommitdiffstats
path: root/conf/layer.conf
diff options
context:
space:
mode:
authorNaveen Saini <naveen.kumar.saini@intel.com>2020-04-24 13:38:37 +0800
committerAnuj Mittal <anuj.mittal@intel.com>2020-04-27 16:26:43 +0800
commit3f99053c646f02ccd9a005f489bde89c41b88b95 (patch)
treed27003e01161f8237441a669d504bbc19b308425 /conf/layer.conf
parentb7c987b5fc872ea49828c6f7941e631d172286a3 (diff)
downloadmeta-intel-3f99053c646f02ccd9a005f489bde89c41b88b95.tar.gz
layer.conf: allow to build with zeus
Class 'distro_features_check' has moved to 'features_check', which does not allow dunfell and latest releases to build against zeus release. Inherit class based on LAYERSERIES_CORENAMES. Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'conf/layer.conf')
-rw-r--r--conf/layer.conf4
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index 0460930c..eb55b70b 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -18,7 +18,7 @@ LAYERRECOMMENDS_intel = "dpdk intel-qat"
18# This should only be incremented on significant changes that will 18# This should only be incremented on significant changes that will
19# cause compatibility issues with other layers 19# cause compatibility issues with other layers
20LAYERVERSION_intel = "5" 20LAYERVERSION_intel = "5"
21LAYERSERIES_COMPAT_intel = "dunfell" 21LAYERSERIES_COMPAT_intel = " zeus dunfell"
22 22
23BBFILES_DYNAMIC += " \ 23BBFILES_DYNAMIC += " \
24 clang-layer:${LAYERDIR}/dynamic-layers/clang-layer/*/*/*.bb \ 24 clang-layer:${LAYERDIR}/dynamic-layers/clang-layer/*/*/*.bb \
@@ -44,3 +44,5 @@ PREFERRED_PROVIDER_nativesdk-libva ?= "nativesdk-libva"
44PREFERRED_PROVIDER_libva-utils ?= "libva-utils" 44PREFERRED_PROVIDER_libva-utils ?= "libva-utils"
45PREFERRED_PROVIDER_libva-native ?= "libva-utils-native" 45PREFERRED_PROVIDER_libva-native ?= "libva-utils-native"
46PREFERRED_PROVIDER_nativesdk-libva-utils ?= "nativesdk-libva-utils" 46PREFERRED_PROVIDER_nativesdk-libva-utils ?= "nativesdk-libva-utils"
47
48COMPAT_DISTRO_FEATURE_CHECK = "${@bb.utils.contains('LAYERSERIES_CORENAMES', 'zeus', 'distro_features_check', 'features_check', d)}"