From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 19 Sep 2024 15:47:43 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1srHVW-0003Gk-0V for lore@lore.pengutronix.de; Thu, 19 Sep 2024 15:47:43 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1srHVW-0001QF-Sg; Thu, 19 Sep 2024 15:47:42 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1srHVL-0001Pz-57; Thu, 19 Sep 2024 15:47:31 +0200 Received: from [2a0a:edc0:0:1101:1d::ac] (helo=dude04.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1srHVK-0001ow-P3; Thu, 19 Sep 2024 15:47:30 +0200 Received: from localhost ([::1] helo=dude04.red.stw.pengutronix.de) by dude04.red.stw.pengutronix.de with esmtp (Exim 4.96) (envelope-from ) id 1srHVK-000qmy-0x; Thu, 19 Sep 2024 15:47:30 +0200 From: Jonas Rebmann Date: Thu, 19 Sep 2024 15:47:30 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <20240918-tslib-1-23-v2-1-926d3d3185c1@pengutronix.de> X-B4-Tracking: v=1; b=H4sIAHEr7GYC/22NywqDMBBFf0Vm3UheVuuq/1Fc5DHVgRIlsWIR/ 71Ruuzqcu7M5WyQMBImaIsNIi6UaAwZ5KUAN5jQIyOfGSSXmt9Ew+b0IssEk4rp5spr6ytvKwN 5YE1CZqMJbjgmv89SquM4RXzSepoeXeaB0jzGzylexNH+dSwiZ42SO6WN5ejuE4b+Pccx0Fp6h G7f9y8uFOBuxgAAAA== To: ptxdist X-Mailer: b4 0.12.0 Subject: [ptxdist] [PATCH v2] update tslib to 1.23 and disable obsolete galax module X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Jonas Rebmann Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false the module_raw galax has been deprecated in favor of module_raw input since tslib 1.9. As the galax module uses input_event::time, it is incompatible with PTXCONF_GLIBC_Y2038. Signed-off-by: Jonas Rebmann --- Changes in v2: - Explicitly set --disable-galax instead of just not enabling - Link to v1: https://lore.ptxdist.org/ptxdist/20240918-tslib-1-23-v1-1-7e20c34ab0ec@pengutronix.de --- rules/tslib.make | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rules/tslib.make b/rules/tslib.make index d2f865dd3..7932d47df 100644 --- a/rules/tslib.make +++ b/rules/tslib.make @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_TSLIB) += tslib # # Paths and names # -TSLIB_VERSION := 1.21 -TSLIB_MD5 := 96ada1cf6c69fbd87f3dd1f316c8e140 +TSLIB_VERSION := 1.23 +TSLIB_MD5 := 1e17bfb7346bceeecfa18b7f6c9b05df TSLIB := tslib-$(TSLIB_VERSION) TSLIB_SUFFIX := tar.bz2 TSLIB_URL := https://github.com/libts/tslib/releases/download/$(TSLIB_VERSION)/$(TSLIB).$(TSLIB_SUFFIX) @@ -47,7 +47,7 @@ TSLIB_CONF_OPT := \ --enable-dmc \ --enable-dmc_dus3000 \ --enable-evthres \ - --enable-galax \ + --disable-galax \ --enable-h3600 \ --enable-iir \ --enable-input \ @@ -59,6 +59,7 @@ TSLIB_CONF_OPT := \ --enable-mk712 \ --enable-one-wire-ts-input \ --enable-variance \ + --enable-crop \ --enable-pthres \ --enable-skip \ --enable-tatung \ --- base-commit: 8de6ce90bc9c95e1d6d319dad00f9c8503168b93 change-id: 20240918-tslib-1-23-48607bd5db5a Best regards, -- Jonas Rebmann