diff options
author | 2018-12-17 09:20:04 +0100 | |
---|---|---|
committer | 2018-12-18 11:48:39 +0000 | |
commit | 785e52bfad371bd3fc43e2c626b96aa94aea0e0a (patch) | |
tree | 1223712707fa53665e617c5910841f9362cf6511 /recipes-graphics | |
parent | 1aa973ce382caf2d4aff8164cd91c435d1aa86a9 (diff) | |
download | meta-raspberrypi-785e52bfad371bd3fc43e2c626b96aa94aea0e0a.tar.gz meta-raspberrypi-785e52bfad371bd3fc43e2c626b96aa94aea0e0a.tar.bz2 meta-raspberrypi-785e52bfad371bd3fc43e2c626b96aa94aea0e0a.zip |
userland: do not provide libgl1
The userland should only provide egl libraries rather than gl libraries,
or else it will cause conflicts with other libgl providers like mesa.
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Diffstat (limited to 'recipes-graphics')
-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 e6af4bf..bc47d06 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" PROVIDES += "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "", "virtual/libgles2 virtual/egl", d)}" -RPROVIDES_${PN} += "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "", "libgles2 egl libegl libegl1 libgl1 libglesv2-2", d)}" +RPROVIDES_${PN} += "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "", "libgles2 egl libegl libegl1 libglesv2-2", d)}" COMPATIBLE_MACHINE = "^rpi$" SRCBRANCH = "master" |