mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 20:27:58 +02:00
* to keep ${PN}-locale from
bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*"
(From OE-Core rev: 73252b16b501c0986b0ca0895e4534895a9ba3db)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
913 B
PHP
28 lines
913 B
PHP
DEPENDS += "libdrm expat udev"
|
|
X11_DEPS += "dri2proto"
|
|
|
|
DRIDRIVERS = "swrast"
|
|
DRIDRIVERS_append_x86 = ",i915,i965"
|
|
DRIDRIVERS_append_x86-64 = ",i915,i965"
|
|
|
|
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)}"
|
|
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/*"
|
|
|