[OE-core] [PATCH 1/3] xserver-xorg: upgrade 1.19.6 -> 1.20.1

Mittal, Anuj anuj.mittal at intel.com
Tue Sep 18 02:51:41 UTC 2018



> -----Original Message-----
> From: openembedded-core-bounces at lists.openembedded.org [mailto:openembedded-
> core-bounces at lists.openembedded.org] On Behalf Of Armin Kuster
> Sent: Saturday, September 15, 2018 12:04 AM
> To: akuster808 at gmail.com; openembedded-core at lists.openembedded.org
> Subject: [OE-core] [PATCH 1/3] xserver-xorg: upgrade 1.19.6 -> 1.20.1
> 
> removed included patch
> 
> Refresh 0001-configure.ac-Fix-check-for-CLOCK_MONOTONIC
> Remove 0001-config-fix-NULL-value-detection-for-ID_INPUT-being-u.patch
> 
> Signed-off-by: Armin Kuster <akuster808 at gmail.com>
> ---
>  ...NULL-value-detection-for-ID_INPUT-being-u.patch | 40 -------------------
> ...onfigure.ac-Fix-check-for-CLOCK_MONOTONIC.patch | 19 +++++----  ...003-
> modesetting-Fix-16-bit-depth-bpp-mode.patch | 46 ----------------------
>  .../xorg-xserver/xserver-xorg_1.19.6.bb            | 33 ----------------
>  .../xorg-xserver/xserver-xorg_1.20.1.bb            | 31 +++++++++++++++
>  5 files changed, 40 insertions(+), 129 deletions(-)  delete mode 100644 meta/recipes-
> graphics/xorg-xserver/xserver-xorg/0001-config-fix-NULL-value-detection-for-
> ID_INPUT-being-u.patch
>  delete mode 100644 meta/recipes-graphics/xorg-xserver/xserver-xorg/0003-
> modesetting-Fix-16-bit-depth-bpp-mode.patch
>  delete mode 100644 meta/recipes-graphics/xorg-xserver/xserver-xorg_1.19.6.bb
>  create mode 100644 meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.1.bb
> 
> diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-config-fix-NULL-
> value-detection-for-ID_INPUT-being-u.patch b/meta/recipes-graphics/xorg-
> xserver/xserver-xorg/0001-config-fix-NULL-value-detection-for-ID_INPUT-being-
> u.patch
> deleted file mode 100644
> index 964d5dd..0000000
> --- a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-config-fix-NULL-value-
> detection-for-ID_INPUT-being-u.patch
> +++ /dev/null
> @@ -1,40 +0,0 @@
> -From a309323328d9d6e0bf5d9ea1d75920e53b9beef3 Mon Sep 17 00:00:00 2001
> -From: Peter Hutterer <peter.hutterer at who-t.net>
> -Date: Fri, 5 Jan 2018 11:58:42 +1000
> -Subject: [PATCH] config: fix NULL value detection for ID_INPUT being unset
> -
> -Erroneous condition caused us to keep going with all devices that didn't have -
> ID_INPUT set.
> -
> -Fixes: 5aad81445c8c3d6
> -Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=104382
> -Reviewed-by: Adam Jackson <ajax at redhat.com>
> -Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>
> -
> -Upstream-status: Backport
> -https://patchwork.freedesktop.org/patch/196090/
> -Affects: < 1.20.0
> -[Yocto # 12899]
> -
> -Signed-off-by: Armin Kuster <akuser808 at gmail.com>
> -
> ----
> - config/udev.c | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> -diff --git a/config/udev.c b/config/udev.c -index e198e8609..3a73189e2 100644
> ---- a/config/udev.c
> -+++ b/config/udev.c
> -@@ -135,7 +135,7 @@ device_added(struct udev_device *udev_device)
> - #endif
> -
> -     value = udev_device_get_property_value(udev_device, "ID_INPUT");
> --    if (value && !strcmp(value, "0")) {
> -+    if (!value || !strcmp(value, "0")) {
> -         LogMessageVerb(X_INFO, 10,
> -                        "config/udev: ignoring device %s without "
> -                        "property ID_INPUT set\n", path);
> ---
> -2.17.1
> -
> diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-configure.ac-Fix-
> check-for-CLOCK_MONOTONIC.patch b/meta/recipes-graphics/xorg-
> xserver/xserver-xorg/0001-configure.ac-Fix-check-for-CLOCK_MONOTONIC.patch
> index 16ec3ed..020a1cf 100644
> --- a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-configure.ac-Fix-check-
> for-CLOCK_MONOTONIC.patch
> +++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-configure.ac-
> +++ Fix-check-for-CLOCK_MONOTONIC.patch
> @@ -1,12 +1,13 @@
> -Discover monotonic clock using compile-time check
> +From 8a91316c4a38f20e7866289f3d779a037d27a129 Mon Sep 17 00:00:00 2001
> +From: Jussi Kukkonen <jussi.kukkonen at intel.com>
> +Date: Mon, 12 Dec 2016 12:11:39 +0200
> +Subject: [PATCH] Discover monotonic clock using compile-time check
> 
>  monotonic clock check does not work when cross-compiling.
> 
>  Upstream-Status: Denied [Does not work on OpenBSD]
>  Signed-off-by: Jussi Kukkonen <jussi.kukkonen at intel.com>
> 
> -
> -
>  Original patch follows:
> 
>  When xorg-xserver is being cross-compiled, there is currently no way @@ -21,15
> +22,16 @@ monotonic clock is available. This check can run just fine when we are
> cross-compiling.
> 
>  Signed-off-by: David James <davidjames at google.com>
> +
>  ---
>   configure.ac | 17 +++++++----------
>   1 file changed, 7 insertions(+), 10 deletions(-)
> 
>  diff --git a/configure.ac b/configure.ac -index f7ab48c..26e85cd 100644
> +index 2b21667..786e002 100644
>  --- a/configure.ac
>  +++ b/configure.ac
> -@@ -1048,19 +1048,16 @@ if ! test "x$have_clock_gettime" = xno; then
> +@@ -984,19 +984,16 @@ if ! test "x$have_clock_gettime" = xno; then
>           CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=200112L"
>       fi
> 
> @@ -54,8 +56,5 @@ index f7ab48c..26e85cd 100644
>  -       [MONOTONIC_CLOCK="cross compiling"])
>  +]])],[MONOTONIC_CLOCK=yes], [MONOTONIC_CLOCK=no])
> 
> -     LIBS="$LIBS_SAVE"
> -     CPPFLAGS="$CPPFLAGS_SAVE"
> ---
> -2.1.4
> -
> +     if test "$MONOTONIC_CLOCK" = "cross compiling"; then
> +
> AC_CHECK_DECL([CLOCK_MONOTONIC],[MONOTONIC_CLOCK="guessing
> + yes"],[MONOTONIC_CLOCK=no],[#include <time.h>])


Do we still need this patch after this change in 1.20:

https://cgit.freedesktop.org/xorg/xserver/commit/configure.ac?h=server-1.20-branch&id=c601c8faf54ff9e3bcbc653421828d71042deef7

Thanks,
Anuj



More information about the Openembedded-core mailing list