summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancesco Giancane <francescogiancane8@gmail.com>2017-10-28 01:10:32 +0200
committerAndrei Gherzan <andrei@gherzan.com>2017-10-28 11:45:19 +0200
commit76f5a7df711b12165a01f933b6a9cb2793940e88 (patch)
treeebb8ee3f477597baf2c4a09bcdeb3bc909cd99d5
parent6a7606a1e45444cdd5b6782208bbe9ed8603b584 (diff)
downloadmeta-raspberrypi-76f5a7df711b12165a01f933b6a9cb2793940e88.tar.gz
userland: RPROVIDES is missing libegl
userland package is the Raspberry Pi provider for the openGL stack. If selected, it shall provide the gles2 and egl stacks in conjunction with mesa-gl. libegl was missing in the RPROVIDES variable, thus some run-time dependencies were not met when using userland as provider. Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
-rw-r--r--recipes-graphics/userland/userland_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-graphics/userland/userland_git.bb b/recipes-graphics/userland/userland_git.bb
index 1fc0717..d4624bf 100644
--- a/recipes-graphics/userland/userland_git.bb
+++ b/recipes-graphics/userland/userland_git.bb
@@ -10,7 +10,7 @@ PR = "r5"
10PROVIDES = "virtual/libgles2 \ 10PROVIDES = "virtual/libgles2 \
11 virtual/egl" 11 virtual/egl"
12 12
13RPROVIDES_${PN} += "libgles2 egl" 13RPROVIDES_${PN} += "libgles2 egl libegl"
14 14
15COMPATIBLE_MACHINE = "^rpi$" 15COMPATIBLE_MACHINE = "^rpi$"
16 16