package/x11r7/xserver_xorg-server: remove non-evdev input drivers for kdrive

Upstream removed support for non-evdev input drivers for kdrive:
https://cgit.freedesktop.org/xorg/xserver/commit/configure.ac?h=server-1.20-branch&id=e7b8b7b131d8283c96ed0aff4593ab41441b5d3b

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2021.05.x
Bernd Kuhls 2021-04-15 08:52:42 +02:00 committed by Yann E. MORIN
parent d12c8c43fd
commit eea0da855b
3 changed files with 12 additions and 24 deletions

View File

@ -146,6 +146,18 @@ endif
comment "Legacy options removed in 2021.05"
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_KBD
bool "KDrive/TinyX kbd input driver removed"
select BR2_LEGACY
help
The kbd input driver in KDrive was removed.
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_MOUSE
bool "KDrive/TinyX mouse input driver removed"
select BR2_LEGACY
help
The mouse input driver in KDrive was removed.
config BR2_PACKAGE_MESA3D_OSMESA_CLASSIC
bool "mesa OSMesa (classic) option removed"
select BR2_LEGACY

View File

@ -90,18 +90,6 @@ config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_EVDEV
Xfbdev -keybd evdev,,device=/dev/input/eventX
-mouse evdev,,device=/dev/input/eventY
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_KBD
bool "Enable KDrive/TinyX kbd input driver"
help
Enable kbd input driver in KDrive. It uses the console
keyboard as input device.
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_MOUSE
bool "Enable KDrive/TinyX mouse input driver"
help
Enable mouse input driver in KDrive. It supports PS/2 mice
and serial port mice.
endif
comment "Optional Servers"

View File

@ -105,18 +105,6 @@ else
XSERVER_XORG_SERVER_CONF_OPTS += --disable-kdrive-evdev
endif
ifeq ($(BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_KBD),y)
XSERVER_XORG_SERVER_CONF_OPTS += --enable-kdrive-kbd
else
XSERVER_XORG_SERVER_CONF_OPTS += --disable-kdrive-kbd
endif
ifeq ($(BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_MOUSE),y)
XSERVER_XORG_SERVER_CONF_OPTS += --enable-kdrive-mouse
else
XSERVER_XORG_SERVER_CONF_OPTS += --disable-kdrive-mouse
endif
else # modular
XSERVER_XORG_SERVER_CONF_OPTS += --disable-kdrive --disable-xfbdev
endif