mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-17 04:06:56 +00:00
3f1c7f910d
Change-Id: I25fab6e100546cfffdd901383f76de76cd7763ed Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
PRINC := "${@int(PRINC) + 2}"
|
|
|
|
#
|
|
# FIXME
|
|
# We need a way to disable EGL and GL ES2, these are provided by userland package
|
|
#
|
|
python __anonymous () {
|
|
import re
|
|
|
|
machine = d.getVar('MACHINE', True)
|
|
if machine == 'raspberrypi':
|
|
# Remove egl and gles2 configure options
|
|
extra_oeconf = d.getVar('EXTRA_OECONF', True).split()
|
|
take_out = ['--enable-egl', '--enable-gles2', '--enable-gles1']
|
|
put_in = ['--disable-egl', '--disable-gles2', '--disable-gles1']
|
|
pattern = re.compile("--with-egl-platforms")
|
|
new_extra_oeconf = []
|
|
for i in extra_oeconf:
|
|
if i not in take_out and not pattern.match(i):
|
|
new_extra_oeconf.append(i)
|
|
for i in put_in:
|
|
new_extra_oeconf.append(i)
|
|
d.setVar('EXTRA_OECONF', ' '.join(new_extra_oeconf))
|
|
|
|
# Remove egl and gles2 from provides
|
|
provides = d.getVar('PROVIDES', True).split()
|
|
take_out = ['virtual/libgles2', 'virtual/egl', 'virtual/libgles1']
|
|
new_provides = []
|
|
for i in provides:
|
|
if i not in take_out:
|
|
new_provides.append(i)
|
|
d.setVar('PROVIDES', ' '.join(new_provides))
|
|
|
|
# We are now machine specific
|
|
d.setVar('PACKAGE_ARCH', d.getVar('MACHINE_ARCH'))
|
|
}
|