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>
# 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: