All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/5] package/x11r7/xserver_xorg-server: remove non-evdev input drivers for kdrive
Date: Thu, 15 Apr 2021 23:44:47 +0200	[thread overview]
Message-ID: <20210415214447.GK359705@scaer> (raw)
In-Reply-To: <20210415065246.276882-1-bernd.kuhls@t-online.de>

Bernd, All,

On 2021-04-15 08:52 +0200, Bernd Kuhls spake thusly:
> 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>

Series of 5 applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  Config.in.legacy                                     | 12 ++++++++++++
>  package/x11r7/xserver_xorg-server/Config.in          | 12 ------------
>  .../x11r7/xserver_xorg-server/xserver_xorg-server.mk | 12 ------------
>  3 files changed, 12 insertions(+), 24 deletions(-)
> 
> diff --git a/Config.in.legacy b/Config.in.legacy
> index 1f62348f9b..d22dca9a53 100644
> --- a/Config.in.legacy
> +++ b/Config.in.legacy
> @@ -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
> diff --git a/package/x11r7/xserver_xorg-server/Config.in b/package/x11r7/xserver_xorg-server/Config.in
> index 3bf5af89be..1b9adadb5c 100644
> --- a/package/x11r7/xserver_xorg-server/Config.in
> +++ b/package/x11r7/xserver_xorg-server/Config.in
> @@ -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"
> diff --git a/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk b/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk
> index 3fa77cd4f0..03f36f1b28 100644
> --- a/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk
> +++ b/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk
> @@ -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
> -- 
> 2.29.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

  parent reply	other threads:[~2021-04-15 21:44 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-15  6:52 [Buildroot] [PATCH 1/5] package/x11r7/xserver_xorg-server: remove non-evdev input drivers for kdrive Bernd Kuhls
2021-04-15  6:52 ` [Buildroot] [PATCH 2/5] package/x11r7/xserver_xorg-server: remove xfbdev Bernd Kuhls
2021-04-26  6:52   ` Peter Korsgaard
2021-04-15  6:52 ` [Buildroot] [PATCH 3/5] package/x11r7/xserver_xorg-server: remove evdev input drivers for kdrive Bernd Kuhls
2021-04-26  6:53   ` Peter Korsgaard
2021-04-15  6:52 ` [Buildroot] [PATCH 4/5] package/x11r7/xserver_xorg-server: remove optional support for tslib Bernd Kuhls
2021-04-26  6:54   ` Peter Korsgaard
2021-04-26  6:55     ` Peter Korsgaard
2021-04-15  6:52 ` [Buildroot] [PATCH 5/5] package/x11r7/xserver_xorg-server: remove unused configure option --disable-xsdl Bernd Kuhls
2021-04-26  6:55   ` Peter Korsgaard
2021-04-26  6:55     ` Peter Korsgaard
2021-04-15 21:44 ` Yann E. MORIN [this message]
2021-04-26  6:51 ` [Buildroot] [PATCH 1/5] package/x11r7/xserver_xorg-server: remove non-evdev input drivers for kdrive Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210415214447.GK359705@scaer \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.