mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 13:13:02 +01:00
Don't install legacy X input drivers for any machines by default, RRECOMMEND xf86-input-libinput instead. This is the setup suggested by upstream: install only libinput by default, but let niche legacy drivers sort higher in configuration so they get chosen if installed. So the order is: evdev < libinput < (synaptics|vmmouse|...) This also removes vmmouse X driver from the qemu config. If a VMware virtual mouse device really needs to be supported, we should enable CONFIG_MOUSE_PS2_VMMOUSE in kernel instead: that is directly supported by the libinput X driver. Fixes [YOCTO #10195]. (From OE-Core rev: 2d005faff6341a81a2afae28860101ba9db51ae8) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
#
|
|
# Base machine settings for X86 architecture BSPs
|
|
#
|
|
|
|
#
|
|
# common settings for X86 machines
|
|
#
|
|
MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
|
|
acpi serial usbgadget alsa"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS += "kernel-modules"
|
|
|
|
IMAGE_FSTYPES += "live"
|
|
|
|
KERNEL_IMAGETYPE ?= "bzImage"
|
|
|
|
SERIAL_CONSOLE ?= "115200 ttyS0"
|
|
|
|
#
|
|
# kernel-related variables
|
|
#
|
|
PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
|
|
PREFERRED_VERSION_linux-yocto ??= "4.8%"
|
|
|
|
#
|
|
# XSERVER subcomponents, used to build the XSERVER variable
|
|
#
|
|
XSERVER_X86_BASE = "xserver-xorg \
|
|
"
|
|
|
|
XSERVER_X86_EXT = " \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'xserver-xorg-extension-glx', '', d)} \
|
|
xserver-xorg-module-libint10 \
|
|
"
|
|
|
|
XSERVER_X86_I915 = "xf86-video-intel \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i915', '', d)} \
|
|
"
|
|
|
|
XSERVER_X86_I965 = "xf86-video-intel \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i965', '', d)} \
|
|
"
|
|
|
|
XSERVER_X86_VESA = "xf86-video-vesa"
|
|
|
|
XSERVER_X86_FBDEV = "xf86-video-fbdev"
|
|
|
|
XSERVER_X86_MODESETTING = "xf86-video-modesetting"
|