From 29d6678fd546377459ef75cf54abeef5b969b5cf Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 27 Aug 2010 15:14:24 +0100 Subject: Major layout change to the packages directory Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie --- .../unfs-server-2.2beta47/013-mntpathlen.patch | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 meta/packages/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch (limited to 'meta/packages/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch') diff --git a/meta/packages/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch b/meta/packages/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch deleted file mode 100644 index 1f10d3c941..0000000000 --- a/meta/packages/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch +++ /dev/null @@ -1,32 +0,0 @@ -# Patch origin: nfs-server source RPM from openSUSE 10.3 - ---- nfs-server/mountd.c 2006/01/12 14:00:13 1.13 -+++ nfs-server/mountd.c 2006/01/12 14:37:35 -@@ -76,7 +76,7 @@ - 0 - }; - --char argbuf[MNTPATHLEN + 1]; -+char argbuf[PATH_MAX + 1]; - char *auth_file = NULL; - static char *program_name; - int need_reinit = 0; -@@ -97,6 +97,9 @@ - /* - * MOUNT - * This is what the whole protocol is all about -+ * -+ * Note: librpc gets us MNTPATHLEN length strings, but realpath -+ * needs a PATH_MAX length output buffer. - */ - fhstatus * - mountproc_mnt_1_svc(dirpath *argp, struct svc_req *rqstp) -@@ -105,7 +108,7 @@ - struct stat stbuf; - nfs_client *cp; - nfs_mount *mp; -- char nargbuf[MNTPATHLEN + 1]; -+ char nargbuf[PATH_MAX + 1]; - int saved_errno = 0; - #ifdef WANT_LOG_MOUNTS - struct in_addr addr; -- cgit v1.2.3-54-g00ecf