mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-16 15:56:57 +00:00
12d8ec9d64
oe-core's commit is not merged in morty branch. | xorg-xserver recommends xf86-input-libinput since oe-core's commit | | | commit 2d005faff6341a81a2afae28860101ba9db51ae8 | | Author: Jussi Kukkonen <jussi.kukkonen@intel.com> | | Date: Wed Oct 26 11:37:38 2016 +0300 | | | | conf: Use xf86-input-libinput by default | | ... This is workaround to fix the problem that mouse does not work in morty. Signed-off-by: Yusuke Mitsuki <mickey.happygolucky@gmail.com>
12 lines
527 B
Plaintext
12 lines
527 B
Plaintext
OPENGL_PKGCFG = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', 'dri3 xshmfence glamor', '', d)}"
|
|
|
|
# slightly modified to oe-core's default: add ${OPENGL_PKGCFG}
|
|
PACKAGECONFIG_rpi ?= " \
|
|
dri2 udev ${XORG_CRYPTO} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'dri glx ${OPENGL_PKGCFG}', '', d)} \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "wayland", "xwayland", "", d)} \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "systemd", "", d)} \
|
|
"
|
|
|
|
XSERVER_RRECOMMENDS_append = " xf86-input-libinput"
|