summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Zhizhikin <andrey.z@gmail.com>2021-10-21 08:41:10 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2021-10-25 15:21:08 +0000
commit8f5041615e3cc00903b36b4fc06239d7ac4bbce1 (patch)
tree269ef2fce3504f3df59ad228b9b55bc18735d6f3
parent51eb226c1625b075420b95bb5946502506ca4b09 (diff)
downloadmeta-freescale-8f5041615e3cc00903b36b4fc06239d7ac4bbce1.tar.gz
imx-gpu-viv: skip QA check for libgl-imx package
libgl-imx package provides libGL, which has runtime dependencies on X11 libraries. In case of Wayland-only builds, this triggers the QA error on missing RDEPENDS, since they are not provided by any package. Skip this QA check for libgl-imx package, as it is not distributed for Wayland-only builds, and has dependencies properly resolved when X11 builds are used. Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> (cherry picked from commit 82556c5b6bdcd8a72c6bf16e1d60b7a93595723e)
-rw-r--r--recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc
index 7afa0950..26fe79b6 100644
--- a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc
+++ b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc
@@ -300,8 +300,12 @@ FILES:libopenvx-imx = " \
300FILES:libopenvx-imx-dev = "${includedir}/VX ${libdir}/libOpenVX${SOLIBSDEV}" 300FILES:libopenvx-imx-dev = "${includedir}/VX ${libdir}/libOpenVX${SOLIBSDEV}"
301RDEPENDS:libopenvx-imx = "libnn-imx" 301RDEPENDS:libopenvx-imx = "libnn-imx"
302 302
303# libGL is only targeting X11 backend, and in case if Wayland-only is used -
304# package QA complains on missing RDEPENDS, which are only available for X11.
305# Skip "file-rdeps" QA for this package.
303FILES:libgl-imx = "${libdir}/libGL${REALSOLIBS}" 306FILES:libgl-imx = "${libdir}/libGL${REALSOLIBS}"
304FILES:libgl-imx-dev = "${libdir}/libGL${SOLIBSDEV} ${includedir}/GL" 307FILES:libgl-imx-dev = "${libdir}/libGL${SOLIBSDEV} ${includedir}/GL"
308INSANE_SKIP:libgl-imx += "file-rdeps"
305 309
306# libEGL needs to open libGLESv1.so 310# libEGL needs to open libGLESv1.so
307INSANE_SKIP:libgles1-imx += "dev-so" 311INSANE_SKIP:libgles1-imx += "dev-so"