mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 09:32:17 +02:00
nfs-utils: Add patch to work with uclibc
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1796 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
17
meta/packages/nfs-utils/files/uclibc_bzero_fix.patch
Normal file
17
meta/packages/nfs-utils/files/uclibc_bzero_fix.patch
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
support/nfs/svc_socket.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
Index: nfs-utils-1.0.6/support/nfs/svc_socket.c
|
||||
===================================================================
|
||||
--- nfs-utils-1.0.6.orig/support/nfs/svc_socket.c 2007-05-27 16:14:09.000000000 +0100
|
||||
+++ nfs-utils-1.0.6/support/nfs/svc_socket.c 2007-05-28 22:43:55.000000000 +0100
|
||||
@@ -63,7 +63,7 @@ svc_socket (u_long number, int type, int
|
||||
}
|
||||
}
|
||||
|
||||
- __bzero ((char *) &addr, sizeof (addr));
|
||||
+ memset ((char *) &addr,0, sizeof (addr));
|
||||
addr.sin_family = AF_INET;
|
||||
|
||||
#ifndef __UCLIBC__ /* neither getrpcbynumber() nor getrpcbynumber_r() is SuSv3 */
|
||||
@@ -2,7 +2,7 @@ DESCRIPTION = "userspace utilities for kernel nfs"
|
||||
PRIORITY = "optional"
|
||||
SECTION = "console/network"
|
||||
LICENSE = "GPL"
|
||||
PR = "r10"
|
||||
PR = "r11"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/nfs/nfs-utils-${PV}.tar.gz \
|
||||
file://acinclude-lossage.patch;patch=1 \
|
||||
@@ -10,6 +10,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/nfs/nfs-utils-${PV}.tar.gz \
|
||||
file://stat-include.patch;patch=1 \
|
||||
file://nfs-utils-1.0.6-uclibc.patch;patch=1 \
|
||||
file://kernel-2.6.18+.patch;patch=1 \
|
||||
file://uclibc_bzero_fix.patch;patch=1 \
|
||||
file://nfsserver \
|
||||
file://forgotten-defines"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user