diff options
author | Francesco Giancane <francescogiancane8@gmail.com> | 2017-10-28 01:10:32 +0200 |
---|---|---|
committer | Paul Barker <pbarker@toganlabs.com> | 2017-12-01 17:46:42 +0000 |
commit | e1f3f93ffff051e42d0cf232127dbf36ebeec9d1 (patch) | |
tree | c48dbc7f2081a8d71c286ac2793967cc665cbf12 | |
parent | 152ecb47de837e4ba65445e605626bd59e0ee9ab (diff) | |
download | meta-raspberrypi-e1f3f93ffff051e42d0cf232127dbf36ebeec9d1.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.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-graphics/userland/userland_git.bb b/recipes-graphics/userland/userland_git.bb index 419d1d7..4ffadd5 100644 --- a/recipes-graphics/userland/userland_git.bb +++ b/recipes-graphics/userland/userland_git.bb | |||
@@ -10,7 +10,7 @@ PR = "r5" | |||
10 | PROVIDES = "virtual/libgles2 \ | 10 | PROVIDES = "virtual/libgles2 \ |
11 | virtual/egl" | 11 | virtual/egl" |
12 | 12 | ||
13 | RPROVIDES_${PN} += "libgles2 egl" | 13 | RPROVIDES_${PN} += "libgles2 egl libegl" |
14 | 14 | ||
15 | COMPATIBLE_MACHINE = "raspberrypi" | 15 | COMPATIBLE_MACHINE = "raspberrypi" |
16 | 16 | ||