mirror of
https://git.yoctoproject.org/poky
synced 2026-05-04 22:39:49 +02:00
* By default enable only swrast. This needs to be here or for some reason qemuarm tries to detect the intel dri libraries and fails. * For x86 and x86-64 explicitly set all of the supported drm drivers. builds properly with qemux86 qemuarm and qemux86-64 (From OE-Core rev: 3efcfa7e75dc0fe98b75ae1b7be8db5549182ff9) Signed-off-by: Ian Reinhart Geiser <igeiser@devonit.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
DEPENDS += "libdrm expat udev"
|
|
X11_DEPS += "dri2proto"
|
|
|
|
DRIDRIVERS = "swrast"
|
|
DRIDRIVERS_append_x86 = ",radeon,r200,nouveau,i965,i915"
|
|
DRIDRIVERS_append_x86-64 = ",radeon,r200,nouveau,i965,i915"
|
|
|
|
EXTRA_OECONF += "--disable-gallium --without-gallium-drivers"
|
|
EXTRA_OECONF += "--enable-dri --with-dri-drivers=${DRIDRIVERS}"
|
|
EXTRA_OECONF += "--enable-gbm"
|
|
|
|
PACKAGECONFIG[gles] = "--enable-gles1 --enable-gles2, --disable-gles1 --disable-gles2"
|
|
|
|
EGL_PLATFORMS = "drm"
|
|
EGL_PLATFORMS .="${@base_contains('DISTRO_FEATURES', 'x11', ',x11', '', d)}"
|
|
EGL_PLATFORMS .="${@base_contains('DISTRO_FEATURES', 'wayland', ',wayland', '', d)}"
|
|
PACKAGECONFIG[egl] = "--enable-egl --with-egl-platforms=${EGL_PLATFORMS}, --disable-egl"
|
|
|
|
python populate_packages_prepend() {
|
|
dri_drivers_root = os.path.join(d.getVar('libdir', True), "dri")
|
|
|
|
do_split_packages(d, dri_drivers_root, '^(.*)_dri\.so$', 'mesa-dri-driver-%s', 'Mesa %s DRI driver', extra_depends='')
|
|
}
|
|
|
|
PACKAGES_DYNAMIC += "^mesa-dri-driver-.*"
|
|
|
|
FILES_${PN}-dbg += "${libdir}/dri/.debug/*"
|
|
|