summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-11-29 09:16:24 -0800
committerAndrei Gherzan <andrei@gherzan.ro>2018-12-01 12:10:49 +0000
commita6f96854b61fa8e512c30d9ca814087e0d7822f8 (patch)
tree1901bef7a3c9680c28fde22283d284bb1553d7e2
parentf752e9238366db7a6e134bbc00ef1f7697cb7eba (diff)
downloadmeta-raspberrypi-a6f96854b61fa8e512c30d9ca814087e0d7822f8.tar.gz
userland: rprovide debiannamed libraries
These names are mapped to mesa equivalent rproviders when using vc4 rdep should be on libegl1 which is then mapped to libegl-mesa since thats what provides libegl1 when using mesa. The libegl is not a global name for this library Fixes ERROR: userland-20181120-r0 do_package_qa: QA Issue: /usr/lib/libWFC.so contained in package userland requires libEGL.so.1, but no providers found in RDEPENDS_userland? [file-rdeps] Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--recipes-graphics/userland/userland_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-graphics/userland/userland_git.bb b/recipes-graphics/userland/userland_git.bb
index b921443..e6af4bf 100644
--- a/recipes-graphics/userland/userland_git.bb
+++ b/recipes-graphics/userland/userland_git.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=0448d6488ef8cc380632b1569ee6d196"
7 7
8PROVIDES += "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "", "virtual/libgles2 virtual/egl", d)}" 8PROVIDES += "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "", "virtual/libgles2 virtual/egl", d)}"
9 9
10RPROVIDES_${PN} += "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "", "libgles2 egl libegl", d)}" 10RPROVIDES_${PN} += "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "", "libgles2 egl libegl libegl1 libgl1 libglesv2-2", d)}"
11COMPATIBLE_MACHINE = "^rpi$" 11COMPATIBLE_MACHINE = "^rpi$"
12 12
13SRCBRANCH = "master" 13SRCBRANCH = "master"
@@ -91,4 +91,4 @@ FILES_${PN}-dbg += "${libdir}/plugins/.debug"
91PACKAGE_ARCH = "${MACHINE_ARCH}" 91PACKAGE_ARCH = "${MACHINE_ARCH}"
92 92
93RDEPENDS_${PN} += "bash" 93RDEPENDS_${PN} += "bash"
94RDEPENDS_${PN} += "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "libegl", "", d)}" 94RDEPENDS_${PN} += "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "libegl1", "", d)}"