summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2025-12-11 16:09:30 +0800
committerKhem Raj <raj.khem@gmail.com>2025-12-11 00:16:16 -0800
commit7a14123a666e930f9e7649166a84a958e23ba29e (patch)
tree7b58df28d2862277a5492919ff9068d823646b97
parent374949c531de346739efc4e8e7ca79d7b81f270a (diff)
downloadmeta-openembedded-7a14123a666e930f9e7649166a84a958e23ba29e.tar.gz
conf/version-check.conf: skip version check for glslang
There are two different types of tags in glslang git repo. One is the release tag of the project itself: 15.2.0, 14.3.0, etc. The other tag is for Vulkan SDK: vulkan-sdk-1.4.309, vulkan-sdk-1.4.304.1, etc. The vulkan sdk tag is used for glslang in openembedded-core because it needs to update in locksetup with vulkan, which leads to a mismatch between the runtime version and the build version. Set CHECK_VERSION_PV for it to skip the version check. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/conf/version-check.conf1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/conf/version-check.conf b/meta-oe/conf/version-check.conf
index 3ff0bccfd6..5ff4e80285 100644
--- a/meta-oe/conf/version-check.conf
+++ b/meta-oe/conf/version-check.conf
@@ -20,6 +20,7 @@ CHECK_VERSION_PV:pn-gnu-config = "%"
20CHECK_VERSION_PV:pn-sysvinit-inittab = "%" 20CHECK_VERSION_PV:pn-sysvinit-inittab = "%"
21CHECK_VERSION_PV:pn-opkg-utils = "%" 21CHECK_VERSION_PV:pn-opkg-utils = "%"
22CHECK_VERSION_PV:pn-libedit = "${@d.getVar('PV').split('-')[1]}" 22CHECK_VERSION_PV:pn-libedit = "${@d.getVar('PV').split('-')[1]}"
23CHECK_VERSION_PV:pn-glslang = "%"
23 24
24# meta-oe 25# meta-oe
25CHECK_VERSION_PV:pn-iozone3 = "3.${PV}" 26CHECK_VERSION_PV:pn-iozone3 = "3.${PV}"