diff options
author | 2013-07-20 14:45:20 -0300 | |
---|---|---|
committer | 2013-07-20 18:48:42 -0300 | |
commit | 74fb61220ec40c2e2ad3ee5ce313ca146d11af13 (patch) | |
tree | 540980d02028f25b11fcde9a00b9282f50064f2d | |
parent | edcd4a6659c281458423ed39586607d69b4bed2a (diff) | |
download | meta-fsl-arm-74fb61220ec40c2e2ad3ee5ce313ca146d11af13.tar.gz meta-fsl-arm-74fb61220ec40c2e2ad3ee5ce313ca146d11af13.tar.bz2 meta-fsl-arm-74fb61220ec40c2e2ad3ee5ce313ca146d11af13.zip |
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>
-rw-r--r-- | recipes-graphics/mesa/mesa_9.1.3.bbappend | 4 |
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 () { # Remove itens from provides provides = d.getVar('PROVIDES', True).split() - take_out = ['virtual/libgles1', 'virtual/libgles2', 'virtual/egl', 'virtual/libgl'] + take_out = ['virtual/libgles1', 'virtual/libgles2', 'virtual/egl'] + if 'mx6' in cur_soc_families.split(':'): + take_out.append('virtual/libgl') new_provides = [] for i in provides: if i not in take_out: |