mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] libkmod: Version bump. 31 -> 32.
@ 2024-03-07 21:28 Christian Melki
  2024-03-07 21:28 ` [ptxdist] [PATCH] host-libkmod: Follow target libkmod Christian Melki
  2024-03-15  4:06 ` [ptxdist] [APPLIED] libkmod: Version bump. 31 -> 32 Michael Olbrich
  0 siblings, 2 replies; 4+ messages in thread
From: Christian Melki @ 2024-03-07 21:28 UTC (permalink / raw)
  To: ptxdist

Minor fix release.
Most interesting bit is that the module directory is now
easily changeable.

https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/log/?h=v32

* Fix some deprecated options and add another.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/libkmod.make | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/rules/libkmod.make b/rules/libkmod.make
index e89388615..1f7e73d00 100644
--- a/rules/libkmod.make
+++ b/rules/libkmod.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBKMOD) += libkmod
 #
 # Paths and names
 #
-LIBKMOD_VERSION	:= 31
-LIBKMOD_MD5	:= 6165867e1836d51795a11ea4762ff66a
+LIBKMOD_VERSION	:= 32
+LIBKMOD_MD5	:= 1046fda48766fae905f83150d12eec78
 LIBKMOD		:= kmod-$(LIBKMOD_VERSION)
 LIBKMOD_SUFFIX	:= tar.xz
 LIBKMOD_URL	:= $(call ptx/mirror, KERNEL, utils/kernel/kmod/$(LIBKMOD).$(LIBKMOD_SUFFIX))
@@ -35,17 +35,16 @@ LIBKMOD_CONF_TOOL	:= autoconf
 LIBKMOD_CONF_OPT	:= \
 	$(CROSS_AUTOCONF_USR) \
 	$(GLOBAL_LARGE_FILE_OPTION) \
-	--disable-experimental \
 	--$(call ptx/endis, PTXCONF_LIBKMOD_TOOLS)-tools \
 	--disable-manpages \
 	--disable-test-modules \
 	--$(call ptx/endis, PTXCONF_LIBKMOD_LOGGING)-logging \
 	--$(call ptx/endis, PTXCONF_LIBKMOD_DEBUG)-debug \
-	--disable-python \
 	--disable-coverage \
 	--disable-gtk-doc \
 	--disable-gtk-doc-html \
 	--disable-gtk-doc-pdf \
+	--$(call ptx/endis, PTXDIST_Y2038)-year2038 \
 	--$(call ptx/wwo, PTXCONF_LIBKMOD_ZSTD)-zstd \
 	--without-xz \
 	--$(call ptx/wwo, PTXCONF_LIBKMOD_ZLIB)-zlib \
-- 
2.34.1




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ptxdist] [PATCH] host-libkmod: Follow target libkmod.
  2024-03-07 21:28 [ptxdist] [PATCH] libkmod: Version bump. 31 -> 32 Christian Melki
@ 2024-03-07 21:28 ` Christian Melki
  2024-03-15  4:06   ` [ptxdist] [APPLIED] " Michael Olbrich
  2024-03-15  4:06 ` [ptxdist] [APPLIED] libkmod: Version bump. 31 -> 32 Michael Olbrich
  1 sibling, 1 reply; 4+ messages in thread
From: Christian Melki @ 2024-03-07 21:28 UTC (permalink / raw)
  To: ptxdist

* Configure options changes.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/host-libkmod.make | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/rules/host-libkmod.make b/rules/host-libkmod.make
index f95494084..adb42a33a 100644
--- a/rules/host-libkmod.make
+++ b/rules/host-libkmod.make
@@ -23,14 +23,13 @@ HOST_LIBKMOD_CONF_OPT	:= \
 	$(HOST_AUTOCONF) \
 	--disable-static \
 	--enable-shared \
-	--disable-experimental \
 	--enable-tools \
 	--disable-manpages \
 	--disable-test-modules \
 	--disable-logging \
 	--disable-debug \
-	--disable-python \
 	--disable-coverage \
+	--enable-year2038 \
 	--$(call ptx/wwo, PTXCONF_HOST_LIBKMOD_ZSTD)-zstd \
 	--without-xz \
 	--$(call ptx/wwo, PTXCONF_HOST_LIBKMOD_ZLIB)-zlib \
-- 
2.34.1




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [APPLIED] libkmod: Version bump. 31 -> 32.
  2024-03-07 21:28 [ptxdist] [PATCH] libkmod: Version bump. 31 -> 32 Christian Melki
  2024-03-07 21:28 ` [ptxdist] [PATCH] host-libkmod: Follow target libkmod Christian Melki
@ 2024-03-15  4:06 ` Michael Olbrich
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2024-03-15  4:06 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as fa640ff68f25f99e5ea5eced6bf65f1a4182a587.

Michael

[sent from post-receive hook]

On Fri, 15 Mar 2024 05:06:30 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> Minor fix release.
> Most interesting bit is that the module directory is now
> easily changeable.
> 
> https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/log/?h=v32
> 
> * Fix some deprecated options and add another.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20240307212815.3583509-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libkmod.make b/rules/libkmod.make
> index e89388615a59..1f7e73d00b20 100644
> --- a/rules/libkmod.make
> +++ b/rules/libkmod.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBKMOD) += libkmod
>  #
>  # Paths and names
>  #
> -LIBKMOD_VERSION	:= 31
> -LIBKMOD_MD5	:= 6165867e1836d51795a11ea4762ff66a
> +LIBKMOD_VERSION	:= 32
> +LIBKMOD_MD5	:= 1046fda48766fae905f83150d12eec78
>  LIBKMOD		:= kmod-$(LIBKMOD_VERSION)
>  LIBKMOD_SUFFIX	:= tar.xz
>  LIBKMOD_URL	:= $(call ptx/mirror, KERNEL, utils/kernel/kmod/$(LIBKMOD).$(LIBKMOD_SUFFIX))
> @@ -35,17 +35,16 @@ LIBKMOD_CONF_TOOL	:= autoconf
>  LIBKMOD_CONF_OPT	:= \
>  	$(CROSS_AUTOCONF_USR) \
>  	$(GLOBAL_LARGE_FILE_OPTION) \
> -	--disable-experimental \
>  	--$(call ptx/endis, PTXCONF_LIBKMOD_TOOLS)-tools \
>  	--disable-manpages \
>  	--disable-test-modules \
>  	--$(call ptx/endis, PTXCONF_LIBKMOD_LOGGING)-logging \
>  	--$(call ptx/endis, PTXCONF_LIBKMOD_DEBUG)-debug \
> -	--disable-python \
>  	--disable-coverage \
>  	--disable-gtk-doc \
>  	--disable-gtk-doc-html \
>  	--disable-gtk-doc-pdf \
> +	--$(call ptx/endis, PTXDIST_Y2038)-year2038 \
>  	--$(call ptx/wwo, PTXCONF_LIBKMOD_ZSTD)-zstd \
>  	--without-xz \
>  	--$(call ptx/wwo, PTXCONF_LIBKMOD_ZLIB)-zlib \



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [APPLIED] host-libkmod: Follow target libkmod.
  2024-03-07 21:28 ` [ptxdist] [PATCH] host-libkmod: Follow target libkmod Christian Melki
@ 2024-03-15  4:06   ` Michael Olbrich
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2024-03-15  4:06 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as ea707f537b4ff8031ec5cf4b6619369550a96dbc.

Michael

[sent from post-receive hook]

On Fri, 15 Mar 2024 05:06:31 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> * Configure options changes.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20240307212815.3583509-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-libkmod.make b/rules/host-libkmod.make
> index f95494084798..adb42a33af9d 100644
> --- a/rules/host-libkmod.make
> +++ b/rules/host-libkmod.make
> @@ -23,14 +23,13 @@ HOST_LIBKMOD_CONF_OPT	:= \
>  	$(HOST_AUTOCONF) \
>  	--disable-static \
>  	--enable-shared \
> -	--disable-experimental \
>  	--enable-tools \
>  	--disable-manpages \
>  	--disable-test-modules \
>  	--disable-logging \
>  	--disable-debug \
> -	--disable-python \
>  	--disable-coverage \
> +	--enable-year2038 \
>  	--$(call ptx/wwo, PTXCONF_HOST_LIBKMOD_ZSTD)-zstd \
>  	--without-xz \
>  	--$(call ptx/wwo, PTXCONF_HOST_LIBKMOD_ZLIB)-zlib \



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-03-15  4:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-07 21:28 [ptxdist] [PATCH] libkmod: Version bump. 31 -> 32 Christian Melki
2024-03-07 21:28 ` [ptxdist] [PATCH] host-libkmod: Follow target libkmod Christian Melki
2024-03-15  4:06   ` [ptxdist] [APPLIED] " Michael Olbrich
2024-03-15  4:06 ` [ptxdist] [APPLIED] libkmod: Version bump. 31 -> 32 Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox