summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/nfs-utils
diff options
context:
space:
mode:
authorStéphane Veyret <sveyret@gmail.com>2023-08-27 00:23:07 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-30 09:56:13 +0100
commit907aa954b2b997bf1f21e0dd96e85cf23ed23915 (patch)
tree775f104829b37138bd04d77a16720a4db9a07f6a /meta/recipes-connectivity/nfs-utils
parent81f66af2612d54c544013fc2584e63c94bfaf96d (diff)
downloadpoky-907aa954b2b997bf1f21e0dd96e85cf23ed23915.tar.gz
nfs-utils: Add needed library to client
The nfs-utils recipe creates a nfs-utils-client package, which can be used if we need to install only the client side of nfs-utils. Unfortunately, rpc.idmapd is part of this package, and requires the dynamic library libnfsidmap.so, which is included in the main package nfs-utils. Therefore, nfs-utils-client has a dependency on nfs-utils, so the server is installed, and try to be started, even on system where the appropriate modules are not present, which causes errors. This patch adds the needed library to the nfs-utils-client package, so that it is now complete and does not require nfs-utils anymore. (From OE-Core rev: c04b28ee26ae1ccce1722c4143961ee6fd87b40e) Signed-off-by: Stéphane Veyret <sveyret@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/nfs-utils')
-rw-r--r--meta/recipes-connectivity/nfs-utils/nfs-utils_2.6.3.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.6.3.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.6.3.bb
index e703395cc4..35cf6af6d4 100644
--- a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.6.3.bb
+++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.6.3.bb
@@ -84,6 +84,7 @@ CONFFILES:${PN}-client += "${localstatedir}/lib/nfs/etab \
84 ${sysconfdir}/nfsmount.conf" 84 ${sysconfdir}/nfsmount.conf"
85 85
86FILES:${PN}-client = "${sbindir}/*statd \ 86FILES:${PN}-client = "${sbindir}/*statd \
87 ${libdir}/libnfsidmap.so.* \
87 ${sbindir}/rpc.idmapd ${sbindir}/sm-notify \ 88 ${sbindir}/rpc.idmapd ${sbindir}/sm-notify \
88 ${sbindir}/showmount ${sbindir}/nfsstat \ 89 ${sbindir}/showmount ${sbindir}/nfsstat \
89 ${localstatedir}/lib/nfs \ 90 ${localstatedir}/lib/nfs \