summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/mesa
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2013-07-20 14:45:20 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2013-07-20 18:48:42 -0300
commit74fb61220ec40c2e2ad3ee5ce313ca146d11af13 (patch)
tree540980d02028f25b11fcde9a00b9282f50064f2d /recipes-graphics/mesa
parentedcd4a6659c281458423ed39586607d69b4bed2a (diff)
downloadmeta-fsl-arm-74fb61220ec40c2e2ad3ee5ce313ca146d11af13.tar.gz
mesa: Avoid removing virtual/libgl provider for i.MX5 SoCs
The AMD GPU libraries does not provide a libGL so we need to rely on mesa one. This fixes a regression introduced by ea8d003 (gpu-viv-bin-mx6q, mesa: fix virtual/libgl dependencies) as the virtual/libgl removal needs to be done /only/ for i.MX6 SoCs. Change-Id: I1f83eff3c2f39ba801dbf6be61b7814fa1bb84fd Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-graphics/mesa')
-rw-r--r--recipes-graphics/mesa/mesa_9.1.3.bbappend4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes-graphics/mesa/mesa_9.1.3.bbappend b/recipes-graphics/mesa/mesa_9.1.3.bbappend
index 9308952..4b3b10b 100644
--- a/recipes-graphics/mesa/mesa_9.1.3.bbappend
+++ b/recipes-graphics/mesa/mesa_9.1.3.bbappend
@@ -23,7 +23,9 @@ python __anonymous () {
23 23
24 # Remove itens from provides 24 # Remove itens from provides
25 provides = d.getVar('PROVIDES', True).split() 25 provides = d.getVar('PROVIDES', True).split()
26 take_out = ['virtual/libgles1', 'virtual/libgles2', 'virtual/egl', 'virtual/libgl'] 26 take_out = ['virtual/libgles1', 'virtual/libgles2', 'virtual/egl']
27 if 'mx6' in cur_soc_families.split(':'):
28 take_out.append('virtual/libgl')
27 new_provides = [] 29 new_provides = []
28 for i in provides: 30 for i in provides:
29 if i not in take_out: 31 if i not in take_out: