mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
nfs-utils: add x32 patch to fix nfsctl issue
nfsservctl syscall does not exist for x32, so return an error. (From OE-Core rev: fddcb9dd086cfb396255ae5c8f717a39c6b9c4b0) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d72ed271e7
commit
7999c9b1aa
@@ -0,0 +1,30 @@
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
|
||||
|
||||
--- nfs-utils-1.2.3/support/nfs/nfsctl.c.x32 2010-09-28 05:24:16.000000000 -0700
|
||||
+++ nfs-utils-1.2.3/support/nfs/nfsctl.c 2011-11-30 13:34:09.369917161 -0800
|
||||
@@ -12,15 +12,22 @@
|
||||
|
||||
#include <unistd.h>
|
||||
#include <asm/unistd.h>
|
||||
+#include <errno.h>
|
||||
#include "nfslib.h"
|
||||
|
||||
/* compatibility hack... */
|
||||
#ifndef __NR_nfsctl
|
||||
+#ifdef __NR_nfsservctl
|
||||
#define __NR_nfsctl __NR_nfsservctl
|
||||
#endif
|
||||
+#endif
|
||||
|
||||
int
|
||||
nfsctl (int cmd, struct nfsctl_arg * argp, union nfsctl_res * resp)
|
||||
{
|
||||
+#ifdef __NR_nfsctl
|
||||
return syscall (__NR_nfsctl, cmd, argp, resp);
|
||||
+#else
|
||||
+ return -ENOSYS;
|
||||
+#endif
|
||||
}
|
||||
@@ -12,11 +12,12 @@ DEPENDS = "libcap libnfsidmap libevent util-linux tcp-wrappers"
|
||||
RDEPENDS_${PN} = "portmap"
|
||||
RRECOMMENDS_${PN} = "kernel-module-nfsd"
|
||||
|
||||
PR = "r4"
|
||||
PR = "r5"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/nfs/nfs-utils-${PV}.tar.bz2 \
|
||||
file://nfs-utils-1.0.6-uclibc.patch \
|
||||
file://nfs-utils-1.2.3-uclibc-libio.h.patch \
|
||||
file://nfs-utils-nfsctl-x32-fix.patch \
|
||||
file://nfsserver"
|
||||
|
||||
SRC_URI[md5sum] = "1131dc5f27c4f3905a6e7ee0d594fd4d"
|
||||
|
||||
Reference in New Issue
Block a user