diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2013-05-25 16:15:29 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2013-06-07 14:17:04 -0300 |
commit | df771572545483c6ce522c3d5e4e8ceb03f30ec1 (patch) | |
tree | 09c910bac0525dba38ba4466f9cf7692ced69dd3 | |
parent | 69e62e82122c5bed4b21fcc7607b553990b50cb5 (diff) | |
download | meta-fsl-arm-df771572545483c6ce522c3d5e4e8ceb03f30ec1.tar.gz |
mesa: Drop libGL when building for i.MX6
The Vivante GPU package provide a libGL library which we should use to
fully support the GPU features; so we drop the binary library from
mesa package.
Change-Id: I7e675e2fb6b9cf8600c7aa7fa961fc743bb051bc
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-graphics/mesa/mesa_9.1.3.bbappend | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes-graphics/mesa/mesa_9.1.3.bbappend b/recipes-graphics/mesa/mesa_9.1.3.bbappend index 765e2f8..b0535a7 100644 --- a/recipes-graphics/mesa/mesa_9.1.3.bbappend +++ b/recipes-graphics/mesa/mesa_9.1.3.bbappend | |||
@@ -34,3 +34,8 @@ python __anonymous () { | |||
34 | # We are now machine specific | 34 | # We are now machine specific |
35 | d.setVar('PACKAGE_ARCH', d.getVar('MACHINE_ARCH')) | 35 | d.setVar('PACKAGE_ARCH', d.getVar('MACHINE_ARCH')) |
36 | } | 36 | } |
37 | |||
38 | # FIXME: Dirty hack to allow use of Vivante GPU libGL binary | ||
39 | do_install_append_mx6 () { | ||
40 | rm ${D}${libdir}/libGL.* | ||
41 | } | ||