mesa: Remove egl and gles only for raspberrypi machine

Change-Id: I25fab6e100546cfffdd901383f76de76cd7763ed
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
This commit is contained in:
Andrei Gherzan 2013-11-12 00:12:36 +02:00
parent c52d4b3da1
commit 40267fd013

View File

@ -1,12 +1,14 @@
PRINC := "${@int(PRINC) + 1}" PRINC := "${@int(PRINC) + 2}"
# #
# FIXME # FIXME
# We may a way to disable EGL and GL ES2, these are provided by userland package # We need a way to disable EGL and GL ES2, these are provided by userland package
# #
python __anonymous () { python __anonymous () {
import re import re
machine = d.getVar('MACHINE', True)
if machine == 'raspberrypi':
# Remove egl and gles2 configure options # Remove egl and gles2 configure options
extra_oeconf = d.getVar('EXTRA_OECONF', True).split() extra_oeconf = d.getVar('EXTRA_OECONF', True).split()
take_out = ['--enable-egl', '--enable-gles2', '--enable-gles1'] take_out = ['--enable-egl', '--enable-gles2', '--enable-gles1']