* [Buildroot] [PATCH v2] package/nfs-utils: bump version to 2.8.5
@ 2026-03-01 14:00 Giulio Benetti
2026-03-01 15:51 ` Julien Olivain via buildroot
2026-03-20 15:55 ` Thomas Perale via buildroot
0 siblings, 2 replies; 3+ messages in thread
From: Giulio Benetti @ 2026-03-01 14:00 UTC (permalink / raw)
To: buildroot; +Cc: Giulio Benetti, Petr Vorel
Release announce:
https://lore.kernel.org/linux-nfs/fdf3631f-e924-4e4c-bd9f-db5b40a90bfe@redhat.com/
With patch [1] option nfsv41 required to be renamed to blkmapd.
[1]: https://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commit;h=59e85671e59f7ccbf66dcf72ce7462bf4932cc78
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Reviewed-by: Petr Vorel <petr.vorel@gmail.com>
---
V1->V2:
* renamed option nfsv41 to blkmapd as pointed by Petr Vorel
---
package/nfs-utils/nfs-utils.hash | 4 ++--
package/nfs-utils/nfs-utils.mk | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/package/nfs-utils/nfs-utils.hash b/package/nfs-utils/nfs-utils.hash
index fb5c03d917..9aa9151ebb 100644
--- a/package/nfs-utils/nfs-utils.hash
+++ b/package/nfs-utils/nfs-utils.hash
@@ -1,4 +1,4 @@
-# From https://www.kernel.org/pub/linux/utils/nfs-utils/2.8.4/sha256sums.asc
-sha256 11c4cc598a434d7d340bad3e072a373ba1dcc2c49f855d44b202222b78ecdbf5 nfs-utils-2.8.4.tar.xz
+# From https://www.kernel.org/pub/linux/utils/nfs-utils/2.8.5/sha256sums.asc
+sha256 b13ca4a9df44186bdbe107514b22732d4243f785f95daf2fb86afc1edba15bbb nfs-utils-2.8.5.tar.xz
# Locally computed
sha256 576540abf5e95029ad4ad90e32071385a5e95b2c30708c706116f3eb87b9a3de COPYING
diff --git a/package/nfs-utils/nfs-utils.mk b/package/nfs-utils/nfs-utils.mk
index e7d82b10ba..ba87ef813e 100644
--- a/package/nfs-utils/nfs-utils.mk
+++ b/package/nfs-utils/nfs-utils.mk
@@ -4,7 +4,7 @@
#
################################################################################
-NFS_UTILS_VERSION = 2.8.4
+NFS_UTILS_VERSION = 2.8.5
NFS_UTILS_SOURCE = nfs-utils-$(NFS_UTILS_VERSION).tar.xz
NFS_UTILS_SITE = https://www.kernel.org/pub/linux/utils/nfs-utils/$(NFS_UTILS_VERSION)
NFS_UTILS_LICENSE = GPL-2.0+
@@ -28,7 +28,7 @@ HOST_NFS_UTILS_DEPENDENCIES = host-pkgconf host-libtirpc host-libevent host-sqli
HOST_NFS_UTILS_CONF_OPTS = \
--enable-tirpc \
--disable-nfsv4 \
- --disable-nfsv41 \
+ --disable-blkmapd \
--disable-gss \
--disable-uuid \
--disable-ipv6 \
@@ -50,10 +50,10 @@ NFS_UTILS_TARGETS_$(BR2_PACKAGE_NFS_UTILS_RPC_NFSD) += usr/sbin/exportfs \
usr/sbin/fsidd usr/lib/systemd/system/fsidd.service
ifeq ($(BR2_PACKAGE_NFS_UTILS_NFSV4),y)
-NFS_UTILS_CONF_OPTS += --enable-nfsv4 --enable-nfsv41
+NFS_UTILS_CONF_OPTS += --enable-nfsv4 --enable-blkmapd
NFS_UTILS_DEPENDENCIES += keyutils lvm2
else
-NFS_UTILS_CONF_OPTS += --disable-nfsv4 --disable-nfsv41
+NFS_UTILS_CONF_OPTS += --disable-nfsv4 --disable-blkmapd
endif
ifeq ($(BR2_PACKAGE_NFS_UTILS_GSS),y)
--
2.47.3
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH v2] package/nfs-utils: bump version to 2.8.5
2026-03-01 14:00 [Buildroot] [PATCH v2] package/nfs-utils: bump version to 2.8.5 Giulio Benetti
@ 2026-03-01 15:51 ` Julien Olivain via buildroot
2026-03-20 15:55 ` Thomas Perale via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Julien Olivain via buildroot @ 2026-03-01 15:51 UTC (permalink / raw)
To: Giulio Benetti; +Cc: buildroot, Petr Vorel
On 01/03/2026 15:00, Giulio Benetti wrote:
> Release announce:
> https://lore.kernel.org/linux-nfs/fdf3631f-e924-4e4c-bd9f-db5b40a90bfe@redhat.com/
>
> With patch [1] option nfsv41 required to be renamed to blkmapd.
>
> [1]:
> https://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commit;h=59e85671e59f7ccbf66dcf72ce7462bf4932cc78
>
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> Reviewed-by: Petr Vorel <petr.vorel@gmail.com>
Applied to next, thanks.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH v2] package/nfs-utils: bump version to 2.8.5
2026-03-01 14:00 [Buildroot] [PATCH v2] package/nfs-utils: bump version to 2.8.5 Giulio Benetti
2026-03-01 15:51 ` Julien Olivain via buildroot
@ 2026-03-20 15:55 ` Thomas Perale via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Perale via buildroot @ 2026-03-20 15:55 UTC (permalink / raw)
To: Giulio Benetti; +Cc: Thomas Perale, buildroot
In reply of:
> Release announce:
> https://lore.kernel.org/linux-nfs/fdf3631f-e924-4e4c-bd9f-db5b40a90bfe@redhat.com/
>
> With patch [1] option nfsv41 required to be renamed to blkmapd.
>
> [1]: https://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commit;h=59e85671e59f7ccbf66dcf72ce7462bf4932cc78
>
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> Reviewed-by: Petr Vorel <petr.vorel@gmail.com>
Applied to 2025.02.x & 2026.02.x. Thanks
> ---
> V1->V2:
> * renamed option nfsv41 to blkmapd as pointed by Petr Vorel
> ---
> package/nfs-utils/nfs-utils.hash | 4 ++--
> package/nfs-utils/nfs-utils.mk | 8 ++++----
> 2 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/package/nfs-utils/nfs-utils.hash b/package/nfs-utils/nfs-utils.hash
> index fb5c03d917..9aa9151ebb 100644
> --- a/package/nfs-utils/nfs-utils.hash
> +++ b/package/nfs-utils/nfs-utils.hash
> @@ -1,4 +1,4 @@
> -# From https://www.kernel.org/pub/linux/utils/nfs-utils/2.8.4/sha256sums.asc
> -sha256 11c4cc598a434d7d340bad3e072a373ba1dcc2c49f855d44b202222b78ecdbf5 nfs-utils-2.8.4.tar.xz
> +# From https://www.kernel.org/pub/linux/utils/nfs-utils/2.8.5/sha256sums.asc
> +sha256 b13ca4a9df44186bdbe107514b22732d4243f785f95daf2fb86afc1edba15bbb nfs-utils-2.8.5.tar.xz
> # Locally computed
> sha256 576540abf5e95029ad4ad90e32071385a5e95b2c30708c706116f3eb87b9a3de COPYING
> diff --git a/package/nfs-utils/nfs-utils.mk b/package/nfs-utils/nfs-utils.mk
> index e7d82b10ba..ba87ef813e 100644
> --- a/package/nfs-utils/nfs-utils.mk
> +++ b/package/nfs-utils/nfs-utils.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -NFS_UTILS_VERSION = 2.8.4
> +NFS_UTILS_VERSION = 2.8.5
> NFS_UTILS_SOURCE = nfs-utils-$(NFS_UTILS_VERSION).tar.xz
> NFS_UTILS_SITE = https://www.kernel.org/pub/linux/utils/nfs-utils/$(NFS_UTILS_VERSION)
> NFS_UTILS_LICENSE = GPL-2.0+
> @@ -28,7 +28,7 @@ HOST_NFS_UTILS_DEPENDENCIES = host-pkgconf host-libtirpc host-libevent host-sqli
> HOST_NFS_UTILS_CONF_OPTS = \
> --enable-tirpc \
> --disable-nfsv4 \
> - --disable-nfsv41 \
> + --disable-blkmapd \
> --disable-gss \
> --disable-uuid \
> --disable-ipv6 \
> @@ -50,10 +50,10 @@ NFS_UTILS_TARGETS_$(BR2_PACKAGE_NFS_UTILS_RPC_NFSD) += usr/sbin/exportfs \
> usr/sbin/fsidd usr/lib/systemd/system/fsidd.service
>
> ifeq ($(BR2_PACKAGE_NFS_UTILS_NFSV4),y)
> -NFS_UTILS_CONF_OPTS += --enable-nfsv4 --enable-nfsv41
> +NFS_UTILS_CONF_OPTS += --enable-nfsv4 --enable-blkmapd
> NFS_UTILS_DEPENDENCIES += keyutils lvm2
> else
> -NFS_UTILS_CONF_OPTS += --disable-nfsv4 --disable-nfsv41
> +NFS_UTILS_CONF_OPTS += --disable-nfsv4 --disable-blkmapd
> endif
>
> ifeq ($(BR2_PACKAGE_NFS_UTILS_GSS),y)
> --
> 2.47.3
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-20 15:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-01 14:00 [Buildroot] [PATCH v2] package/nfs-utils: bump version to 2.8.5 Giulio Benetti
2026-03-01 15:51 ` Julien Olivain via buildroot
2026-03-20 15:55 ` Thomas Perale via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox