From owner-svn-src-stable-8@FreeBSD.ORG Sun Jan 6 01:11:46 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B34D3B9B; Sun, 6 Jan 2013 01:11:46 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8E602D15; Sun, 6 Jan 2013 01:11:46 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r061Bk67037479; Sun, 6 Jan 2013 01:11:46 GMT (envelope-from rmacklem@svn.freebsd.org) Received: (from rmacklem@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r061BkJd037478; Sun, 6 Jan 2013 01:11:46 GMT (envelope-from rmacklem@svn.freebsd.org) Message-Id: <201301060111.r061BkJd037478@svn.freebsd.org> From: Rick Macklem Date: Sun, 6 Jan 2013 01:11:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245086 - stable/8/sys/kern X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jan 2013 01:11:46 -0000 Author: rmacklem Date: Sun Jan 6 01:11:45 2013 New Revision: 245086 URL: http://svnweb.freebsd.org/changeset/base/245086 Log: MFC: r244226 The group list for a non-default export entry (a host/subnet one) was being copied from the wrong place. This patch fixes that. This could cause access failures for mapped users, when the group permissions were needed. Submitted by: Christopher Key Modified: stable/8/sys/kern/vfs_export.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/kern/ (props changed) Modified: stable/8/sys/kern/vfs_export.c ============================================================================== --- stable/8/sys/kern/vfs_export.c Sun Jan 6 01:01:57 2013 (r245085) +++ stable/8/sys/kern/vfs_export.c Sun Jan 6 01:11:45 2013 (r245086) @@ -208,7 +208,7 @@ vfs_hang_addrlist(struct mount *mp, stru np->netc_anon = crget(); np->netc_anon->cr_uid = argp->ex_anon.cr_uid; crsetgroups(np->netc_anon, argp->ex_anon.cr_ngroups, - np->netc_anon->cr_groups); + argp->ex_anon.cr_groups); np->netc_anon->cr_prison = &prison0; prison_hold(np->netc_anon->cr_prison); np->netc_numsecflavors = argp->ex_numsecflavors; From owner-svn-src-stable-8@FreeBSD.ORG Sun Jan 6 01:17:59 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1D04BE83; Sun, 6 Jan 2013 01:17:59 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id EAD2BD34; Sun, 6 Jan 2013 01:17:58 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r061HwpM038348; Sun, 6 Jan 2013 01:17:58 GMT (envelope-from rmacklem@svn.freebsd.org) Received: (from rmacklem@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r061HwmI038347; Sun, 6 Jan 2013 01:17:58 GMT (envelope-from rmacklem@svn.freebsd.org) Message-Id: <201301060117.r061HwmI038347@svn.freebsd.org> From: Rick Macklem Date: Sun, 6 Jan 2013 01:17:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245088 - stable/8/usr.sbin/gssd X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jan 2013 01:17:59 -0000 Author: rmacklem Date: Sun Jan 6 01:17:58 2013 New Revision: 245088 URL: http://svnweb.freebsd.org/changeset/base/245088 Log: MFC: r244331 Fix the gssd daemon so that it uses syslog() to report an error instead of calling err() when it is daemonized, so that the error gets logged. Modified: stable/8/usr.sbin/gssd/gssd.c Directory Properties: stable/8/usr.sbin/gssd/ (props changed) Modified: stable/8/usr.sbin/gssd/gssd.c ============================================================================== --- stable/8/usr.sbin/gssd/gssd.c Sun Jan 6 01:17:36 2013 (r245087) +++ stable/8/usr.sbin/gssd/gssd.c Sun Jan 6 01:17:58 2013 (r245088) @@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -106,21 +107,43 @@ main(int argc, char **argv) sun.sun_len = SUN_LEN(&sun); fd = socket(AF_LOCAL, SOCK_STREAM, 0); if (!fd) { + if (debug_level == 0) { + syslog(LOG_ERR, "Can't create local gssd socket"); + exit(1); + } err(1, "Can't create local gssd socket"); } oldmask = umask(S_IXUSR|S_IRWXG|S_IRWXO); if (bind(fd, (struct sockaddr *) &sun, sun.sun_len) < 0) { + if (debug_level == 0) { + syslog(LOG_ERR, "Can't bind local gssd socket"); + exit(1); + } err(1, "Can't bind local gssd socket"); } umask(oldmask); if (listen(fd, SOMAXCONN) < 0) { + if (debug_level == 0) { + syslog(LOG_ERR, "Can't listen on local gssd socket"); + exit(1); + } err(1, "Can't listen on local gssd socket"); } xprt = svc_vc_create(fd, RPC_MAXDATASIZE, RPC_MAXDATASIZE); if (!xprt) { + if (debug_level == 0) { + syslog(LOG_ERR, + "Can't create transport for local gssd socket"); + exit(1); + } err(1, "Can't create transport for local gssd socket"); } if (!svc_reg(xprt, GSSD, GSSDVERS, gssd_1, NULL)) { + if (debug_level == 0) { + syslog(LOG_ERR, + "Can't register service for local gssd socket"); + exit(1); + } err(1, "Can't register service for local gssd socket"); } From owner-svn-src-stable-8@FreeBSD.ORG Sun Jan 6 19:26:39 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E98F5C62; Sun, 6 Jan 2013 19:26:39 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id D944A14FD; Sun, 6 Jan 2013 19:26:39 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r06JQd49017292; Sun, 6 Jan 2013 19:26:39 GMT (envelope-from peter@svn.freebsd.org) Received: (from peter@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r06JQdAk017291; Sun, 6 Jan 2013 19:26:39 GMT (envelope-from peter@svn.freebsd.org) Message-Id: <201301061926.r06JQdAk017291@svn.freebsd.org> From: Peter Wemm Date: Sun, 6 Jan 2013 19:26:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245109 - stable/8/etc/sendmail X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jan 2013 19:26:40 -0000 Author: peter Date: Sun Jan 6 19:26:39 2013 New Revision: 245109 URL: http://svnweb.freebsd.org/changeset/base/245109 Log: MFC 245107: use full domain name Modified: stable/8/etc/sendmail/freefall.mc Modified: stable/8/etc/sendmail/freefall.mc ============================================================================== --- stable/8/etc/sendmail/freefall.mc Sun Jan 6 19:26:14 2013 (r245108) +++ stable/8/etc/sendmail/freefall.mc Sun Jan 6 19:26:39 2013 (r245109) @@ -43,5 +43,5 @@ divert(0)dnl VERSIONID(`$FreeBSD$') OSTYPE(freebsd6) -FEATURE(nullclient, smarthost.ysv.$m) +FEATURE(nullclient, smarthost.ysv.freebsd.org) MASQUERADE_AS(FreeBSD.org) From owner-svn-src-stable-8@FreeBSD.ORG Mon Jan 7 11:12:10 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8136DAEF for ; Mon, 7 Jan 2013 11:12:10 +0000 (UTC) (envelope-from mm@svn.freebsd.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6F3E41C2 for ; Mon, 7 Jan 2013 11:12:10 +0000 (UTC) Received: from mm (uid 1130) (envelope-from mm@svn.freebsd.org) id 771e by svn.freebsd.org (DragonFly Mail Agent v0.7); Mon, 07 Jan 2013 11:12:09 +0000 From: Martin Matuska Date: Mon, 7 Jan 2013 11:12:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245129 - in stable/8/contrib/xz: . po src/common src/liblzma/api/lzma src/liblzma/simple src/xz X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <50eaad89.771e.1feeb58a@svn.freebsd.org> X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2013 11:12:10 -0000 Author: mm Date: Mon Jan 7 11:12:09 2013 New Revision: 245129 URL: http://svnweb.freebsd.org/changeset/base/245129 Log: MFC r244601: Update contrib/xz to version 5.0.4 Fix mergeinfo. Modified: stable/8/contrib/xz/AUTHORS (contents, props changed) stable/8/contrib/xz/ChangeLog (contents, props changed) stable/8/contrib/xz/README (contents, props changed) stable/8/contrib/xz/THANKS (contents, props changed) stable/8/contrib/xz/po/de.po stable/8/contrib/xz/po/fr.po stable/8/contrib/xz/po/it.po stable/8/contrib/xz/po/pl.po stable/8/contrib/xz/src/common/sysdefs.h stable/8/contrib/xz/src/liblzma/api/lzma/version.h stable/8/contrib/xz/src/liblzma/simple/simple_coder.c stable/8/contrib/xz/src/liblzma/simple/simple_private.h stable/8/contrib/xz/src/xz/args.c stable/8/contrib/xz/src/xz/coder.c stable/8/contrib/xz/src/xz/message.c stable/8/contrib/xz/src/xz/xz.1 Directory Properties: stable/8/contrib/xz/ (props changed) stable/8/contrib/xz/po/ (props changed) stable/8/contrib/xz/src/ (props changed) Modified: stable/8/contrib/xz/AUTHORS ============================================================================== --- stable/8/contrib/xz/AUTHORS Mon Jan 7 11:11:04 2013 (r245128) +++ stable/8/contrib/xz/AUTHORS Mon Jan 7 11:12:09 2013 (r245129) @@ -16,11 +16,11 @@ Authors of XZ Utils Some scripts have been adapted from gzip. The original versions were written by Jean-loup Gailly, Charles Levert, and Paul Eggert. - Andrew Dudman helped adapting the script and their man pages for + Andrew Dudman helped adapting the scripts and their man pages for XZ Utils. - The GNU Autotools based build system contains files from many authors, - which I'm not trying list here. + The GNU Autotools-based build system contains files from many authors, + which I'm not trying to list here. Several people have contributed fixes or reported bugs. Most of them are mentioned in the file THANKS. Modified: stable/8/contrib/xz/ChangeLog ============================================================================== --- stable/8/contrib/xz/ChangeLog Mon Jan 7 11:11:04 2013 (r245128) +++ stable/8/contrib/xz/ChangeLog Mon Jan 7 11:12:09 2013 (r245129) @@ -1,3 +1,335 @@ +commit 20778053a07eb90c159c1377ca8dc05a90fd530b +Author: Lasse Collin +Date: Fri Jun 22 14:36:16 2012 +0300 + + xz: Update man page date to match the latest update. + +commit 2cefa84af676da37d7e9c466d55d46c67ab00c22 +Author: Lasse Collin +Date: Fri Jun 22 10:25:43 2012 +0300 + + Bump version and soname for 5.0.4. + +commit 433fec191a17e45690809e54146ea7a773f54cff +Author: Lasse Collin +Date: Fri Jun 22 10:25:09 2012 +0300 + + Update NEWS for 5.0.4. + +commit 711fa680f552a4003df73b37e6dc4d6e00b47bcd +Author: Lasse Collin +Date: Mon Jun 18 21:27:47 2012 +0300 + + Docs: Language fix to 01_compress_easy.c. + + Thanks to Jonathan Nieder. + +commit 3d7ab1dc61a75c560828be5df96598388b771456 +Author: Lasse Collin +Date: Thu Jun 14 20:15:30 2012 +0300 + + Fix the top-level Makefile.am for the new example programs. + +commit ef8b8e5f111469b5bc005975f7abb9abbd372b25 +Author: Lasse Collin +Date: Thu Jun 14 10:52:33 2012 +0300 + + Docs: Add new example programs. + + These have more comments than the old examples and + human-readable error messages. More tutorial-like examples + are needed but these are a start. + +commit 75c149bc8045a26f8bc719cb8ed20668dab79091 +Author: Lasse Collin +Date: Thu Jun 14 10:33:27 2012 +0300 + + Docs: Move xz_pipe_comp.c and xz_pipe_decomp.c to doc/examples_old. + + It is good to keep these around to so that if someone has + copied the decompressor bug from xz_pipe_decomp.c he has + an example how to easily fix it. + +commit 456307ebf947a5f50bd995d617b99c1215572308 +Author: Lasse Collin +Date: Thu Jun 14 10:33:01 2012 +0300 + + Docs: Fix a bug in xz_pipe_decomp.c example program. + +commit 4c310b8a29bc257e6ccbd2310f12f258678f3fef +Author: Lasse Collin +Date: Thu May 31 15:53:25 2012 +0300 + + Translations: Update the Italian translation. + + Thanks to Milo Casagrande. + +commit ec32b79366dc47a55ea877589df9e8509ba113a7 +Author: Lasse Collin +Date: Wed May 30 23:15:07 2012 +0300 + + Translations: Update the French translation. + + Thanks to Adrien Nader. + +commit dd06f40e4dd7649525e4f28d890dc238a3aa37e5 +Author: Lasse Collin +Date: Tue May 29 22:26:27 2012 +0300 + + Translations: Update the German translation. + +commit c66808d1f55d0149ed57c536cc9b52e9c8b583bc +Author: Lasse Collin +Date: Tue May 29 22:12:57 2012 +0300 + + Translations: Update Polish translation. + +commit 556c22dfed195c1466b298183b850d6c28544900 +Author: Lasse Collin +Date: Tue May 29 13:10:36 2012 +0300 + + Preliminary NEWS for 5.0.4. + +commit dd13b66bf582f49d3aec36e3410ff8541b7506da +Author: Lasse Collin +Date: Mon May 28 20:42:11 2012 +0300 + + liblzma: Fix possibility of incorrect LZMA_BUF_ERROR. + + lzma_code() could incorrectly return LZMA_BUF_ERROR if + all of the following was true: + + - The caller knows how many bytes of output to expect + and only provides that much output space. + + - When the last output bytes are decoded, the + caller-provided input buffer ends right before + the LZMA2 end of payload marker. So LZMA2 won't + provide more output anymore, but it won't know it + yet and thus won't return LZMA_STREAM_END yet. + + - A BCJ filter is in use and it hasn't left any + unfiltered bytes in the temp buffer. This can happen + with any BCJ filter, but in practice it's more likely + with filters other than the x86 BCJ. + + Another situation where the bug can be triggered happens + if the uncompressed size is zero bytes and no output space + is provided. In this case the decompression can fail even + if the whole input file is given to lzma_code(). + + A similar bug was fixed in XZ Embedded on 2011-09-19. + +commit a0223bf796fdaad51a11ad02c4195c694849cc78 +Author: Lasse Collin +Date: Mon May 28 15:38:32 2012 +0300 + + Update THANKS. + +commit 86e57e4bfefe3fd8e13615c41604165bb2359501 +Author: Lasse Collin +Date: Mon May 28 15:37:43 2012 +0300 + + xz: Don't show a huge number in -vv when memory limit is disabled. + +commit 13e44a94da19d1ef14832ff12d3877a6fd2c54c0 +Author: Lasse Collin +Date: Sun May 27 22:30:17 2012 +0300 + + xz: Document the "summary" lines of --robot -lvv. + + This documents only the columns that are in v5.0. + The new columns added in the master branch aren't + necessarily stable yet. + +commit 2f90345e13ab8fea4de45a4f1caa73ebc63a62e7 +Author: Lasse Collin +Date: Sun May 27 21:53:20 2012 +0300 + + xz: Fix output of verbose --robot --list modes. + + It printed the filename in "filename (x/y)" format + which it obviously shouldn't do in robot mode. + +commit 8d4864f53ffae5d862c691a0b334a6b69bc5366e +Author: Lasse Collin +Date: Thu May 10 21:15:17 2012 +0300 + + Update THANKS. + +commit 35e9c58abb0ce3993da844aaeaa3e7231cd2be8f +Author: Lasse Collin +Date: Thu May 10 21:14:16 2012 +0300 + + Docs: Cleanup line wrapping a bit. + +commit 532b3e4c568a228309b56f95c13435fd078dbe02 +Author: Benno Schulenberg +Date: Tue Mar 13 22:04:04 2012 +0100 + + Fix a few typos and add some missing articles in some documents. + + Also hyphenate several compound adjectives. + + Signed-off-by: Benno Schulenberg + +commit afb6ce8c82ffef8f2505a3759da72a733c7b0b8f +Author: Lasse Collin +Date: Sun Apr 29 11:51:25 2012 +0300 + + Windows: Update notes about static linking with MSVC. + +commit 7c3ba2ed5c3c878d4a14ca549b46dbff60c6d565 +Author: Lasse Collin +Date: Thu Apr 19 15:25:26 2012 +0300 + + liblzma: Remove outdated comments. + +commit f55db9c187651094f43881c49db2b2d9ffee6b80 +Author: Lasse Collin +Date: Thu Apr 19 14:17:52 2012 +0300 + + DOS: Link against DJGPP's libemu to support FPU emulation. + + This way xz should work on 386SX and 486SX. Floating point + only is needed for verbose output in xz. + +commit 203edff4c761dbd7cac76ea66e4eed501c23e7a3 +Author: Lasse Collin +Date: Thu Apr 19 13:58:55 2012 +0300 + + Docs: Update MINIX 3 information in INSTALL. + +commit f0a8f95c215628967b7cf9bd9b0a9e4172f50bb4 +Author: Lasse Collin +Date: Wed Feb 22 14:23:13 2012 +0200 + + Update THANKS. + +commit b7ad23fa78646036c0290cd91eada939c9a31526 +Author: Lasse Collin +Date: Wed Feb 22 14:02:34 2012 +0200 + + Fix exit status of xzgrep when grepping binary files. + + When grepping binary files, grep may exit before it has + read all the input. In this case, gzip -q returns 2 (eating + SIGPIPE), but xz and bzip2 show SIGPIPE as the exit status + (e.g. 141). This causes wrong exit status when grepping + xz- or bzip2-compressed binary files. + + The fix checks for the special exit status that indicates SIGPIPE. + It uses kill -l which should be supported everywhere since it + is in both SUSv2 (1997) and POSIX.1-2008. + + Thanks to James Buren for the bug report. + +commit 4e19fbb04a0035030406482319e264426459eb24 +Author: Lasse Collin +Date: Wed Feb 22 12:08:43 2012 +0200 + + Update THANKS. + +commit c6fa03a427e3d1320794102cee3ff4f5ae00eb36 +Author: Lasse Collin +Date: Thu May 24 18:47:52 2012 +0300 + + Fix compiling with IBM XL C on AIX. + +commit 7b6ffc98645e1b3b302b6680be0a901d1ebf7358 +Author: Lasse Collin +Date: Thu May 24 18:37:08 2012 +0300 + + Build: Upgrade m4/acx_pthread.m4 to the latest version. + + It was renamed to ax_pthread.m4 in Autoconf Archive. + +commit bfac2be5023994fcc53de2844e7dd3af61910dc2 +Author: Lasse Collin +Date: Tue Jan 10 17:13:03 2012 +0200 + + Tests: Fix a compiler warning with _FORTIFY_SOURCE. + + Reported here: + http://sourceforge.net/projects/lzmautils/forums/forum/708858/topic/4927385 + +commit df85e156716a4eecb7e2978691f03f729444d998 +Author: Lasse Collin +Date: Mon Dec 19 21:21:29 2011 +0200 + + Docs: Explain the stable releases better in README. + +commit d06d32f108c8278c25c24b2e8666bda7b2ec23b5 +Author: Lasse Collin +Date: Fri Nov 4 17:57:16 2011 +0200 + + xz: Fix a typo in a comment. + + Thanks to Bela Lubkin. + +commit 636fdcfbf542f1e84db2c4736004d84be4b12c84 +Author: Lasse Collin +Date: Thu Nov 3 17:08:02 2011 +0200 + + Update THANKS. + +commit 55fd02f83ecd6cbd6925a3e8a3d43b8d4ef2a17c +Author: Lasse Collin +Date: Thu Nov 3 17:07:22 2011 +0200 + + xz: Fix xz on EBCDIC systems. + + Thanks to Chris Donawa. + +commit 4052f36053b931bad847a36aabf1a07d0034e297 +Author: Lasse Collin +Date: Tue Sep 6 12:03:41 2011 +0300 + + Build: Fix "make check" on Windows. + +commit 0f25758459c74c366a73f35d47ee12b75890bb79 +Author: Lasse Collin +Date: Tue Aug 9 21:19:13 2011 +0300 + + Update THANKS. + +commit 70f03b51ffcb783646b20de8d97b6986c4280eec +Author: Lasse Collin +Date: Tue Aug 9 21:16:44 2011 +0300 + + Workaround unusual SIZE_MAX on SCO OpenServer. + +commit f138bdf76a70029e8360062a0b227936b83b24c9 +Author: Lasse Collin +Date: Sat Aug 6 20:37:28 2011 +0300 + + Run the scripts with the correct shell in test_scripts.sh. + + The scripts are now made executable in the build tree. + This way the scripts can be run like programs in + test_scripts.sh. Previously test_scripts.sh always + used sh but it's not correct if @POSIX_SHELL@ is set + to something else by configure. + + Thanks to Jonathan Nieder for the patch. + +commit 2c144a0365c84dbf1b6722466746d42f2563a319 +Author: Lasse Collin +Date: Sun Jul 31 11:01:47 2011 +0300 + + Fix exit status of "xzdiff foo.xz bar.xz". + + xzdiff was clobbering the exit status from diff in a case + statement used to analyze the exit statuses from "xz" when + its operands were two compressed files. Save and restore + diff's exit status to fix this. + + The bug is inherited from zdiff in GNU gzip and was fixed + there on 2009-10-09. + + Thanks to Jonathan Nieder for the patch and + to Peter Pallinger for reporting the bug. + commit edf339227a966f24aebe1845fcca9429b8f6e318 Author: Anders F Bjorklund Date: Fri Nov 5 12:56:11 2010 +0100 Modified: stable/8/contrib/xz/README ============================================================================== --- stable/8/contrib/xz/README Mon Jan 7 11:11:04 2013 (r245128) +++ stable/8/contrib/xz/README Mon Jan 7 11:12:09 2013 (r245129) @@ -5,7 +5,7 @@ XZ Utils 0. Overview 1. Documentation 1.1. Overall documentation - 1.2. Documentation for command line tools + 1.2. Documentation for command-line tools 1.3. Documentation for liblzma 2. Version numbering 3. Reporting bugs @@ -17,21 +17,21 @@ XZ Utils 0. Overview ----------- - XZ Utils provide a general-purpose data compression library and - command line tools. The native file format is the .xz format, but + XZ Utils provide a general-purpose data-compression library plus + command-line tools. The native file format is the .xz format, but also the legacy .lzma format is supported. The .xz format supports - multiple compression algorithms, which are called "filters" in + multiple compression algorithms, which are called "filters" in the context of XZ Utils. The primary filter is currently LZMA2. With typical files, XZ Utils create about 30 % smaller files than gzip. To ease adapting support for the .xz format into existing applications and scripts, the API of liblzma is somewhat similar to the API of the - popular zlib library. For the same reason, the command line tool xz - has similar command line syntax than that of gzip. + popular zlib library. For the same reason, the command-line tool xz + has a command-line syntax similar to that of gzip. - When aiming for the highest compression ratio, LZMA2 encoder uses + When aiming for the highest compression ratio, the LZMA2 encoder uses a lot of CPU time and may use, depending on the settings, even - hundreds of megabytes of RAM. However, in fast modes, LZMA2 encoder + hundreds of megabytes of RAM. However, in fast modes, the LZMA2 encoder competes with bzip2 in compression speed, RAM usage, and compression ratio. @@ -44,8 +44,8 @@ XZ Utils since that needs to be done only once to benefit many people. With some file types, combining (or "chaining") LZMA2 with an - additional filter can improve compression ratio. A filter chain may - contain up to four filters, although usually only one two is used. + additional filter can improve the compression ratio. A filter chain may + contain up to four filters, although usually only one or two are used. For example, putting a BCJ (Branch/Call/Jump) filter before LZMA2 in the filter chain can improve compression ratio of executable files. @@ -88,9 +88,9 @@ XZ Utils packages. -1.2. Documentation for command line tools +1.2. Documentation for command-line tools - The command line tools are documented as man pages. In source code + The command-line tools are documented as man pages. In source code releases (and possibly also in some binary packages), the man pages are also provided in plain text (ASCII only) and PDF formats in the directory "doc/man" to make the man pages more accessible to those @@ -109,8 +109,8 @@ XZ Utils written yet. For now, if you have never used liblzma, libbzip2, or zlib, I - recommend learning *basics* of zlib API. Once you know that, it - should be easier to learn liblzma. + recommend learning the *basics* of the zlib API. Once you know that, + it should be easier to learn liblzma. http://zlib.net/manual.html http://zlib.net/zlib_how.html @@ -124,23 +124,27 @@ XZ Utils - X is the major version. When this is incremented, the library API and ABI break. - - Y is the minor version. It is incremented when new features are - added without breaking existing API or ABI. Even Y indicates - stable release and odd Y indicates unstable (alpha or beta - version). + - Y is the minor version. It is incremented when new features + are added without breaking the existing API or ABI. An even Y + indicates a stable release and an odd Y indicates unstable + (alpha or beta version). - - Z is the revision. This has different meaning for stable and + - Z is the revision. This has a different meaning for stable and unstable releases: + * Stable: Z is incremented when bugs get fixed without adding - any new features. + any new features. This is intended to be convenient for + downstream distributors that want bug fixes but don't want + any new features to minimize the risk of introducing new bugs. + * Unstable: Z is just a counter. API or ABI of features added in earlier unstable releases having the same X.Y may break. - S indicates stability of the release. It is missing from the - stable releases where Y is an even number. When Y is odd, S + stable releases, where Y is an even number. When Y is odd, S is either "alpha" or "beta" to make it very clear that such versions are not stable releases. The same X.Y.Z combination is - not used for more than one stability level i.e. after X.Y.Zalpha, + not used for more than one stability level, i.e. after X.Y.Zalpha, the next version can be X.Y.(Z+1)beta but not X.Y.Zbeta. @@ -176,7 +180,7 @@ XZ Utils Don't send core dump files or any executables. If you have a small example file(s) (total size less than 256 KiB), please include it/them as an attachment. If you have bigger test files, put them - online somewhere and include an URL to the file(s) in the bug report. + online somewhere and include a URL to the file(s) in the bug report. Always include the exact version number of XZ Utils in the bug report. If you are using a snapshot from the git repository, use "git describe" @@ -193,7 +197,7 @@ XZ Utils The messages from the xz tool have been translated into a few languages. Before starting to translate into a new language, ask - the author that someone else hasn't already started working on it. + the author whether someone else hasn't already started working on it. Test your translation. Testing includes comparing the translated output to the original English version by running the same commands @@ -214,7 +218,7 @@ XZ Utils Note especially the following: - The output of --help and --long-help must look nice on - a 80-column terminal. It's OK to add extra lines if needed. + an 80-column terminal. It's OK to add extra lines if needed. - In contrast, don't add extra lines to error messages and such. They are often preceded with e.g. a filename on the same line, Modified: stable/8/contrib/xz/THANKS ============================================================================== --- stable/8/contrib/xz/THANKS Mon Jan 7 11:11:04 2013 (r245128) +++ stable/8/contrib/xz/THANKS Mon Jan 7 11:12:09 2013 (r245129) @@ -14,16 +14,19 @@ has been important. :-) In alphabetical - Jakub Bogusz - Maarten Bosmans - Trent W. Buck + - James Buren - David Burklund - Daniel Mealha Cabrita - Milo Casagrande - Marek Černocký + - Chris Donawa - Andrew Dudman - Markus Duft - İsmail Dönmez - Robert Elz - Gilles Espinasse - Denis Excoffier + - Michael Felt - Mike Frysinger - Jason Gorski - Juan Manuel Guerrero @@ -38,8 +41,10 @@ has been important. :-) In alphabetical - Peter Lawler - Hin-Tak Leung - Andraž 'ruskie' Levstik + - Cary Lewis - Wim Lewis - Lorenzo De Liso + - Bela Lubkin - Gregory Margo - Jim Meyering - Rafał Mużyło @@ -48,6 +53,7 @@ has been important. :-) In alphabetical - Jonathan Nieder - Andre Noll - Peter O'Gorman + - Peter Pallinger - Igor Pavlov - Diego Elio Pettenò - Elbert Pol @@ -58,6 +64,7 @@ has been important. :-) In alphabetical - Christian von Roques - Jukka Salmi - Alexandre Sauvé + - Benno Schulenberg - Andreas Schwab - Dan Shechter - Stuart Shelton Modified: stable/8/contrib/xz/po/de.po ============================================================================== --- stable/8/contrib/xz/po/de.po Mon Jan 7 11:11:04 2013 (r245128) +++ stable/8/contrib/xz/po/de.po Mon Jan 7 11:12:09 2013 (r245129) @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: XZ Utils 4.999.9beta\n" "Report-Msgid-Bugs-To: lasse.collin@tukaani.org\n" -"POT-Creation-Date: 2010-09-11 17:07+0200\n" +"POT-Creation-Date: 2012-05-29 17:20+0200\n" "PO-Revision-Date: 2010-09-07 20:27+0200\n" "Last-Translator: \n" "Language-Team: German\n" @@ -96,7 +96,7 @@ msgid "%s: File seems to have been moved msgstr "" "%s: Datei scheint umbenannt worden zu sein, daher wird sie nicht gelöscht" -#: src/xz/file_io.c:144 src/xz/file_io.c:590 +#: src/xz/file_io.c:144 src/xz/file_io.c:589 #, c-format msgid "%s: Cannot remove: %s" msgstr "%s: Kann nicht löschen: %s" @@ -126,59 +126,59 @@ msgstr "%s: Überspringe symbolischen Ve msgid "%s: Is a directory, skipping" msgstr "%s: Überspringe Verzeichnis" -#: src/xz/file_io.c:462 +#: src/xz/file_io.c:461 #, c-format msgid "%s: Not a regular file, skipping" msgstr "%s: Keine reguläre Datei, überspringe" -#: src/xz/file_io.c:479 +#: src/xz/file_io.c:478 #, c-format msgid "%s: File has setuid or setgid bit set, skipping" msgstr "%s: Datei hat das setuid oder setgid Bit gesetzt, überspringe" -#: src/xz/file_io.c:486 +#: src/xz/file_io.c:485 #, c-format msgid "%s: File has sticky bit set, skipping" msgstr "%s: Datei hat sticky Bit gesetzt, überspringe" -#: src/xz/file_io.c:493 +#: src/xz/file_io.c:492 #, c-format msgid "%s: Input file has more than one hard link, skipping" msgstr "%s: Eingabedatei hat mehr als einen hard link, überspringe" -#: src/xz/file_io.c:714 +#: src/xz/file_io.c:713 #, c-format msgid "Error restoring the O_APPEND flag to standard output: %s" msgstr "" "Fehler beim Wiederherstellen des O_APPEND flags bei Standard Output: %s" -#: src/xz/file_io.c:726 +#: src/xz/file_io.c:725 #, c-format msgid "%s: Closing the file failed: %s" msgstr "%s: Fehler beim Schießen der Datei: %s" -#: src/xz/file_io.c:762 src/xz/file_io.c:946 +#: src/xz/file_io.c:761 src/xz/file_io.c:945 #, c-format msgid "%s: Seeking failed when trying to create a sparse file: %s" msgstr "" "%s: Positionierungsfehler beim Versuch eine sparse Datei zu erzeugen: %s" -#: src/xz/file_io.c:821 +#: src/xz/file_io.c:820 #, c-format msgid "%s: Read error: %s" msgstr "%s: Lesefehler: %s" -#: src/xz/file_io.c:844 +#: src/xz/file_io.c:843 #, c-format msgid "%s: Error seeking the file: %s" msgstr "%s: Fehler beim Lesen der Dateinamen: %s" -#: src/xz/file_io.c:854 +#: src/xz/file_io.c:853 #, c-format msgid "%s: Unexpected end of file" msgstr "%s: Unerwartetes Ende der Datei" -#: src/xz/file_io.c:904 +#: src/xz/file_io.c:903 #, c-format msgid "%s: Write error: %s" msgstr "%s: Schreibfehler: %s" @@ -212,7 +212,7 @@ msgstr "Kein" #. but the Check ID is known (here 2). This and other "Unknown-N" #. strings are used in tables, so the width must not exceed ten #. columns with a fixed-width font. It's OK to omit the dash if -#. you need space for one extra letter. +#. you need space for one extra letter, but don't use spaces. #: src/xz/list.c:69 msgid "Unknown-2" msgstr "Unbek.2" @@ -275,41 +275,41 @@ msgstr "%s: Zu klein um ein gültiges .x #. to Ratio, the columns are right aligned. Check and Filename #. are left aligned. If you need longer words, it's OK to #. use two lines here. Test with "xz -l foo.xz". -#: src/xz/list.c:612 +#: src/xz/list.c:603 msgid "Strms Blocks Compressed Uncompressed Ratio Check Filename" msgstr " Str. Blöcke Kompr. Unkompr. Verh. Check Dateiname" -#: src/xz/list.c:652 +#: src/xz/list.c:643 #, c-format msgid " Streams: %s\n" msgstr " Ströme: %s\n" -#: src/xz/list.c:654 +#: src/xz/list.c:645 #, c-format msgid " Blocks: %s\n" msgstr " Blöcke: %s\n" -#: src/xz/list.c:656 +#: src/xz/list.c:647 #, c-format msgid " Compressed size: %s\n" msgstr " Größe komprimiert: %s\n" -#: src/xz/list.c:659 +#: src/xz/list.c:650 #, c-format msgid " Uncompressed size: %s\n" msgstr " Größe unkomprimiert: %s\n" -#: src/xz/list.c:662 +#: src/xz/list.c:653 #, c-format msgid " Ratio: %s\n" msgstr " Verhältnis: %s\n" -#: src/xz/list.c:664 +#: src/xz/list.c:655 #, c-format msgid " Check: %s\n" msgstr " Check: %s\n" -#: src/xz/list.c:665 +#: src/xz/list.c:656 #, c-format msgid " Stream padding: %s\n" msgstr " Strom Auffüllung: %s\n" @@ -317,7 +317,7 @@ msgstr " Strom Auffüllung: %s\n" #. TRANSLATORS: The second line is column headings. All except #. Check are right aligned; Check is left aligned. Test with #. "xz -lv foo.xz". -#: src/xz/list.c:693 +#: src/xz/list.c:684 msgid "" " Streams:\n" " Stream Blocks CompOffset UncompOffset CompSize " @@ -329,7 +329,7 @@ msgstr "" #. TRANSLATORS: The second line is column headings. All #. except Check are right aligned; Check is left aligned. -#: src/xz/list.c:748 +#: src/xz/list.c:739 #, c-format msgid "" " Blocks:\n" @@ -347,53 +347,53 @@ msgstr "" #. are right aligned. %*s is replaced with 0-120 #. spaces to make the CheckVal column wide enough. #. Test with "xz -lvv foo.xz". -#: src/xz/list.c:760 +#: src/xz/list.c:751 #, c-format msgid " CheckVal %*s Header Flags CompSize MemUsage Filters" msgstr " CheckWert %*s Kopf Schalter KompGröße Speicher Filter" -#: src/xz/list.c:838 src/xz/list.c:1007 +#: src/xz/list.c:829 src/xz/list.c:998 #, c-format msgid " Memory needed: %s MiB\n" msgstr " Benötigter Speicher: %s MiB\n" -#: src/xz/list.c:840 src/xz/list.c:1009 +#: src/xz/list.c:831 src/xz/list.c:1000 #, c-format msgid " Sizes in headers: %s\n" msgstr " Größe in Köpfen: %s\n" -#: src/xz/list.c:841 src/xz/list.c:1010 +#: src/xz/list.c:832 src/xz/list.c:1001 msgid "Yes" msgstr "Ja" -#: src/xz/list.c:841 src/xz/list.c:1010 +#: src/xz/list.c:832 src/xz/list.c:1001 msgid "No" msgstr "Nein" #. TRANSLATORS: %s is an integer. Only the plural form of this #. message is used (e.g. "2 files"). Test with "xz -l foo.xz bar.xz". -#: src/xz/list.c:986 +#: src/xz/list.c:977 #, c-format msgid "%s file\n" msgid_plural "%s files\n" msgstr[0] "%s Datei\n" msgstr[1] "%s Dateien\n" -#: src/xz/list.c:999 +#: src/xz/list.c:990 msgid "Totals:" msgstr "Gesamt:" -#: src/xz/list.c:1000 +#: src/xz/list.c:991 #, c-format msgid " Number of files: %s\n" msgstr " Anzahl Dateien: %s\n" -#: src/xz/list.c:1072 +#: src/xz/list.c:1063 msgid "--list works only on .xz files (--format=xz or --format=auto)" msgstr "" "--list funktioniert nur mit .xz Dateien (--format=xz oder --format=auto)" -#: src/xz/list.c:1078 +#: src/xz/list.c:1069 msgid "--list does not support reading from standard input" msgstr "--list unterstützt kein Lesen der Standardeingabe" @@ -428,60 +428,73 @@ msgstr "" "Lesen der Standardeingabe ist nicht möglich, wenn die Dateinamen auch von " "der Standardeingabe gelesen werden" -#: src/xz/message.c:800 src/xz/message.c:844 +#. TRANSLATORS: This is the program name in the beginning +#. of the line in messages. Usually it becomes "xz: ". +#. This is a translatable string because French needs +#. a space before a colon. +#: src/xz/message.c:733 +#, c-format +msgid "%s: " +msgstr "" + +#: src/xz/message.c:796 src/xz/message.c:846 msgid "Internal error (bug)" msgstr "Interner Fehler (Bug)" -#: src/xz/message.c:807 +#: src/xz/message.c:803 msgid "Cannot establish signal handlers" msgstr "Kann Signal Routine nicht setzen" -#: src/xz/message.c:816 +#: src/xz/message.c:812 msgid "No integrity check; not verifying file integrity" msgstr "Kein Integritäts-Check; werde Datei-Integrität nicht überprüfen" -#: src/xz/message.c:819 +#: src/xz/message.c:815 msgid "Unsupported type of integrity check; not verifying file integrity" msgstr "" "Typ des Integritäts-Checks nicht unterstützt; werde Datei-Integrität nicht " "überprüfen" -#: src/xz/message.c:826 +#: src/xz/message.c:822 msgid "Memory usage limit reached" msgstr "Speicher-Limit erreicht" -#: src/xz/message.c:829 +#: src/xz/message.c:825 msgid "File format not recognized" msgstr "Datei Format nicht erkannt" -#: src/xz/message.c:832 +#: src/xz/message.c:828 msgid "Unsupported options" msgstr "Optionen nicht unterstützt" -#: src/xz/message.c:835 +#: src/xz/message.c:831 msgid "Compressed data is corrupt" msgstr "Komprimierte Daten sind korrupt" -#: src/xz/message.c:838 +#: src/xz/message.c:834 msgid "Unexpected end of input" msgstr "Unerwartetes Eingabe Ende" -#: src/xz/message.c:886 +#: src/xz/message.c:867 +msgid "%s MiB of memory is required. The limiter is disabled." +msgstr "%s MiB Speicher wird benötigt. Der Begrenzer ist deaktiviert." + +#: src/xz/message.c:895 #, c-format msgid "%s MiB of memory is required. The limit is %s." msgstr "%s MiB Speicher wird benötigt. Limit ist %s." -#: src/xz/message.c:1053 +#: src/xz/message.c:1062 #, c-format msgid "%s: Filter chain: %s\n" msgstr "%s: Filter Kette: %s\n" -#: src/xz/message.c:1063 +#: src/xz/message.c:1072 #, c-format msgid "Try `%s --help' for more information." msgstr "Versuchen Sie `%s --help' für mehr Informationen." -#: src/xz/message.c:1089 +#: src/xz/message.c:1098 #, c-format msgid "" "Usage: %s [OPTION]... [FILE]...\n" @@ -492,18 +505,18 @@ msgstr "" "Komprimiert oder dekomprimiert .xz DATEI(EN).\n" "\n" -#: src/xz/message.c:1096 +#: src/xz/message.c:1105 msgid "" "Mandatory arguments to long options are mandatory for short options too.\n" msgstr "" "Obligatorische Argumente für lange Optionen sind auch für kurze Optionen\n" "zwingend.\n" -#: src/xz/message.c:1100 +#: src/xz/message.c:1109 msgid " Operation mode:\n" msgstr " Operationsmodus:\n" -#: src/xz/message.c:1103 +#: src/xz/message.c:1112 msgid "" " -z, --compress force compression\n" " -d, --decompress force decompression\n" @@ -515,7 +528,7 @@ msgstr "" " -t, --test überprüfe Datei Integrität\n" " -l, --list liste Datei Informationen" -#: src/xz/message.c:1109 +#: src/xz/message.c:1118 msgid "" "\n" " Operation modifiers:\n" @@ -523,7 +536,7 @@ msgstr "" "\n" " Operationsmodifikatoren:\n" -#: src/xz/message.c:1112 +#: src/xz/message.c:1121 msgid "" " -k, --keep keep (don't delete) input files\n" " -f, --force force overwrite of output file and (de)compress links\n" @@ -535,7 +548,7 @@ msgstr "" " -c, --stdout schreibe nach Standard Output und lösche nicht die\n" " Eingabedateien" -#: src/xz/message.c:1118 +#: src/xz/message.c:1127 msgid "" " --no-sparse do not create sparse files when decompressing\n" " -S, --suffix=.SUF use the suffix `.SUF' on compressed files\n" @@ -554,7 +567,7 @@ msgstr "" " --files0=[DATEI] wie --files, aber benutze den Null Charakter als " "Trenner" -#: src/xz/message.c:1126 +#: src/xz/message.c:1135 msgid "" "\n" " Basic file format and compression options:\n" @@ -562,7 +575,7 @@ msgstr "" "\n" " Grundlegende Optionen für Dateiformat und Kompression:\n" -#: src/xz/message.c:1128 +#: src/xz/message.c:1137 msgid "" " -F, --format=FMT file format to encode or decode; possible values are\n" " `auto' (default), `xz', `lzma', and `raw'\n" @@ -578,7 +591,7 @@ msgstr "" "`crc32',\n" " `crc64' (Voreinstellung), oder `sha256'" -#: src/xz/message.c:1135 +#: src/xz/message.c:1144 msgid "" " -0 ... -9 compression preset; default is 6; take compressor " "*and*\n" @@ -591,7 +604,7 @@ msgstr "" "des\n" " Dekomprimierers, wenn Sie 7-9 benutzen!" -#: src/xz/message.c:1139 +#: src/xz/message.c:1148 msgid "" " -e, --extreme try to improve compression ratio by using more CPU " "time;\n" @@ -602,7 +615,7 @@ msgstr "" " verhältnis zu verbessern. Das beeinflusst nicht den\n" " Speicherbedarf des Dekomprimierers." -#: src/xz/message.c:1144 +#: src/xz/message.c:1153 #, no-c-format msgid "" " --memlimit-compress=LIMIT\n" @@ -619,7 +632,7 @@ msgstr "" "RAM,\n" " oder 0 für Grundeinstellungen." -#: src/xz/message.c:1151 +#: src/xz/message.c:1160 msgid "" " --no-adjust if compression settings exceed the memory usage " "limit,\n" @@ -631,7 +644,7 @@ msgstr "" "statt\n" " die Einstellungen nach unten anzupassen." -#: src/xz/message.c:1157 +#: src/xz/message.c:1166 msgid "" "\n" " Custom filter chain for compression (alternative for using presets):" @@ -639,7 +652,7 @@ msgstr "" "\n" " User-definierte Filter Kette für Kompression (alternativ zu Voreinstellung):" -#: src/xz/message.c:1166 +#: src/xz/message.c:1175 msgid "" "\n" " --lzma1[=OPTS] LZMA1 or LZMA2; OPTS is a comma-separated list of zero " @@ -683,7 +696,7 @@ msgstr "" " depth=NUM Maximale Suchtiefe; 0=automatisch\n" " (Voreinstellung)" -#: src/xz/message.c:1181 +#: src/xz/message.c:1190 msgid "" "\n" " --x86[=OPTS] x86 BCJ filter (32-bit and 64-bit)\n" @@ -706,7 +719,7 @@ msgstr "" " start=NUM Start-Offset für Konversion\n" " (Voreinstellung=0)" -#: src/xz/message.c:1193 +#: src/xz/message.c:1202 msgid "" "\n" " --delta[=OPTS] Delta filter; valid OPTS (valid values; default):\n" @@ -720,7 +733,7 @@ msgstr "" *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-stable-8@FreeBSD.ORG Tue Jan 8 05:30:46 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 856C5D94; Tue, 8 Jan 2013 05:30:46 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6902CB29; Tue, 8 Jan 2013 05:30:46 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r085UkvD032310; Tue, 8 Jan 2013 05:30:46 GMT (envelope-from yongari@svn.freebsd.org) Received: (from yongari@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r085Uk9j032261; Tue, 8 Jan 2013 05:30:46 GMT (envelope-from yongari@svn.freebsd.org) Message-Id: <201301080530.r085Uk9j032261@svn.freebsd.org> From: Pyun YongHyeon Date: Tue, 8 Jan 2013 05:30:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245152 - stable/8/sys/dev/bge X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2013 05:30:46 -0000 Author: yongari Date: Tue Jan 8 05:30:45 2013 New Revision: 245152 URL: http://svnweb.freebsd.org/changeset/base/245152 Log: MFC r243686: Add preliminary support for BCM57766 ASIC. While I'm here add BCM57762 device id which is found on Apple Thunderbolt ethernet. Modified: stable/8/sys/dev/bge/if_bge.c stable/8/sys/dev/bge/if_bgereg.h Directory Properties: stable/8/sys/ (props changed) stable/8/sys/dev/ (props changed) stable/8/sys/dev/bge/ (props changed) Modified: stable/8/sys/dev/bge/if_bge.c ============================================================================== --- stable/8/sys/dev/bge/if_bge.c Tue Jan 8 05:29:54 2013 (r245151) +++ stable/8/sys/dev/bge/if_bge.c Tue Jan 8 05:30:45 2013 (r245152) @@ -216,7 +216,9 @@ static const struct bge_type { { BCOM_VENDORID, BCOM_DEVICEID_BCM5906M }, { BCOM_VENDORID, BCOM_DEVICEID_BCM57760 }, { BCOM_VENDORID, BCOM_DEVICEID_BCM57761 }, + { BCOM_VENDORID, BCOM_DEVICEID_BCM57762 }, { BCOM_VENDORID, BCOM_DEVICEID_BCM57765 }, + { BCOM_VENDORID, BCOM_DEVICEID_BCM57766 }, { BCOM_VENDORID, BCOM_DEVICEID_BCM57780 }, { BCOM_VENDORID, BCOM_DEVICEID_BCM57781 }, { BCOM_VENDORID, BCOM_DEVICEID_BCM57785 }, @@ -347,6 +349,7 @@ static const struct bge_revision bge_maj { BGE_ASICREV_BCM5787, "unknown BCM5754/5787" }, { BGE_ASICREV_BCM5906, "unknown BCM5906" }, { BGE_ASICREV_BCM57765, "unknown BCM57765" }, + { BGE_ASICREV_BCM57766, "unknown BCM57766" }, { BGE_ASICREV_BCM57780, "unknown BCM57780" }, { BGE_ASICREV_BCM5717, "unknown BCM5717" }, { BGE_ASICREV_BCM5719, "unknown BCM5719" }, @@ -362,6 +365,7 @@ static const struct bge_revision bge_maj #define BGE_IS_575X_PLUS(sc) ((sc)->bge_flags & BGE_FLAG_575X_PLUS) #define BGE_IS_5755_PLUS(sc) ((sc)->bge_flags & BGE_FLAG_5755_PLUS) #define BGE_IS_5717_PLUS(sc) ((sc)->bge_flags & BGE_FLAG_5717_PLUS) +#define BGE_IS_57765_PLUS(sc) ((sc)->bge_flags & BGE_FLAG_57765_PLUS) const struct bge_revision * bge_lookup_rev(uint32_t); const struct bge_vendor * bge_lookup_vendor(uint16_t); @@ -2243,7 +2247,7 @@ bge_blockinit(struct bge_softc *sc) } else if (!BGE_IS_5705_PLUS(sc)) limit = BGE_RX_RINGS_MAX; else if (sc->bge_asicrev == BGE_ASICREV_BCM5755 || - sc->bge_asicrev == BGE_ASICREV_BCM57765) + BGE_IS_57765_PLUS(sc)) limit = 4; else limit = 1; @@ -2657,7 +2661,9 @@ bge_probe(device_t dev) BGE_PCI_GEN2_PRODID_ASICREV, 4); break; case BCOM_DEVICEID_BCM57761: + case BCOM_DEVICEID_BCM57762: case BCOM_DEVICEID_BCM57765: + case BCOM_DEVICEID_BCM57766: case BCOM_DEVICEID_BCM57781: case BCOM_DEVICEID_BCM57785: case BCOM_DEVICEID_BCM57791: @@ -3283,7 +3289,9 @@ bge_attach(device_t dev) BGE_PCI_GEN2_PRODID_ASICREV, 4); break; case BCOM_DEVICEID_BCM57761: + case BCOM_DEVICEID_BCM57762: case BCOM_DEVICEID_BCM57765: + case BCOM_DEVICEID_BCM57766: case BCOM_DEVICEID_BCM57781: case BCOM_DEVICEID_BCM57785: case BCOM_DEVICEID_BCM57791: @@ -3346,10 +3354,13 @@ bge_attach(device_t dev) /* Save chipset family. */ switch (sc->bge_asicrev) { + case BGE_ASICREV_BCM57765: + case BGE_ASICREV_BCM57766: + sc->bge_flags |= BGE_FLAG_57765_PLUS; + /* FALLTHROUGH */ case BGE_ASICREV_BCM5717: case BGE_ASICREV_BCM5719: case BGE_ASICREV_BCM5720: - case BGE_ASICREV_BCM57765: sc->bge_flags |= BGE_FLAG_5717_PLUS | BGE_FLAG_5755_PLUS | BGE_FLAG_575X_PLUS | BGE_FLAG_5705_PLUS | BGE_FLAG_JUMBO | BGE_FLAG_JUMBO_FRAME; @@ -3763,12 +3774,9 @@ bge_attach(device_t dev) sc->bge_phy_flags |= BGE_PHY_NO_3LED; if ((BGE_IS_5705_PLUS(sc)) && sc->bge_asicrev != BGE_ASICREV_BCM5906 && - sc->bge_asicrev != BGE_ASICREV_BCM5717 && - sc->bge_asicrev != BGE_ASICREV_BCM5719 && - sc->bge_asicrev != BGE_ASICREV_BCM5720 && sc->bge_asicrev != BGE_ASICREV_BCM5785 && - sc->bge_asicrev != BGE_ASICREV_BCM57765 && - sc->bge_asicrev != BGE_ASICREV_BCM57780) { + sc->bge_asicrev != BGE_ASICREV_BCM57780 && + !BGE_IS_5717_PLUS(sc)) { if (sc->bge_asicrev == BGE_ASICREV_BCM5755 || sc->bge_asicrev == BGE_ASICREV_BCM5761 || sc->bge_asicrev == BGE_ASICREV_BCM5784 || Modified: stable/8/sys/dev/bge/if_bgereg.h ============================================================================== --- stable/8/sys/dev/bge/if_bgereg.h Tue Jan 8 05:29:54 2013 (r245151) +++ stable/8/sys/dev/bge/if_bgereg.h Tue Jan 8 05:30:45 2013 (r245152) @@ -360,6 +360,7 @@ #define BGE_ASICREV_BCM5784 0x5784 #define BGE_ASICREV_BCM5785 0x5785 #define BGE_ASICREV_BCM57765 0x57785 +#define BGE_ASICREV_BCM57766 0x57766 #define BGE_ASICREV_BCM57780 0x57780 /* chip revisions */ @@ -2483,7 +2484,9 @@ struct bge_status_block { #define BCOM_DEVICEID_BCM5906M 0x1713 #define BCOM_DEVICEID_BCM57760 0x1690 #define BCOM_DEVICEID_BCM57761 0x16B0 +#define BCOM_DEVICEID_BCM57762 0x1682 #define BCOM_DEVICEID_BCM57765 0x16B4 +#define BCOM_DEVICEID_BCM57766 0x1686 #define BCOM_DEVICEID_BCM57780 0x1692 #define BCOM_DEVICEID_BCM57781 0x16B1 #define BCOM_DEVICEID_BCM57785 0x16B5 @@ -2971,6 +2974,7 @@ struct bge_softc { #define BGE_FLAG_5755_PLUS 0x00100000 #define BGE_FLAG_5788 0x00200000 #define BGE_FLAG_5717_PLUS 0x00400000 +#define BGE_FLAG_57765_PLUS 0x00800000 #define BGE_FLAG_40BIT_BUG 0x01000000 #define BGE_FLAG_4G_BNDRY_BUG 0x02000000 #define BGE_FLAG_RX_ALIGNBUG 0x04000000 From owner-svn-src-stable-8@FreeBSD.ORG Tue Jan 8 05:35:18 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BD41D111; Tue, 8 Jan 2013 05:35:18 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 97B07B52; Tue, 8 Jan 2013 05:35:18 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r085ZInS033683; Tue, 8 Jan 2013 05:35:18 GMT (envelope-from yongari@svn.freebsd.org) Received: (from yongari@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r085ZIrQ033682; Tue, 8 Jan 2013 05:35:18 GMT (envelope-from yongari@svn.freebsd.org) Message-Id: <201301080535.r085ZIrQ033682@svn.freebsd.org> From: Pyun YongHyeon Date: Tue, 8 Jan 2013 05:35:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245154 - stable/8/sys/dev/ale X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2013 05:35:18 -0000 Author: yongari Date: Tue Jan 8 05:35:18 2013 New Revision: 245154 URL: http://svnweb.freebsd.org/changeset/base/245154 Log: MFC r244341: Make sure to stop both TX and RX MACs in ale_stop_mac(). Previously it used to stop TX MAC only such that MAC reconfiguration after getting a link didn't work as expected. PR: kern/173652 Modified: stable/8/sys/dev/ale/if_ale.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/dev/ (props changed) stable/8/sys/dev/ale/ (props changed) Modified: stable/8/sys/dev/ale/if_ale.c ============================================================================== --- stable/8/sys/dev/ale/if_ale.c Tue Jan 8 05:34:17 2013 (r245153) +++ stable/8/sys/dev/ale/if_ale.c Tue Jan 8 05:35:18 2013 (r245154) @@ -2929,7 +2929,7 @@ ale_stop_mac(struct ale_softc *sc) reg = CSR_READ_4(sc, ALE_MAC_CFG); if ((reg & (MAC_CFG_TX_ENB | MAC_CFG_RX_ENB)) != 0) { - reg &= ~MAC_CFG_TX_ENB | MAC_CFG_RX_ENB; + reg &= ~(MAC_CFG_TX_ENB | MAC_CFG_RX_ENB); CSR_WRITE_4(sc, ALE_MAC_CFG, reg); } From owner-svn-src-stable-8@FreeBSD.ORG Tue Jan 8 08:58:23 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EA709D50; Tue, 8 Jan 2013 08:58:23 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id DDB13316; Tue, 8 Jan 2013 08:58:23 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r088wNOR091019; Tue, 8 Jan 2013 08:58:23 GMT (envelope-from erwin@svn.freebsd.org) Received: (from erwin@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r088wNPg091018; Tue, 8 Jan 2013 08:58:23 GMT (envelope-from erwin@svn.freebsd.org) Message-Id: <201301080858.r088wNPg091018@svn.freebsd.org> From: Erwin Lansing Date: Tue, 8 Jan 2013 08:58:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245161 - stable/8/etc/namedb X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2013 08:58:24 -0000 Author: erwin Date: Tue Jan 8 08:58:23 2013 New Revision: 245161 URL: http://svnweb.freebsd.org/changeset/base/245161 Log: MFC r245034 Update with new IPv4 address for D root. Approved by: delphij (mentor) Modified: stable/8/etc/namedb/named.root Directory Properties: stable/8/etc/ (props changed) Modified: stable/8/etc/namedb/named.root ============================================================================== --- stable/8/etc/namedb/named.root Tue Jan 8 08:58:07 2013 (r245160) +++ stable/8/etc/namedb/named.root Tue Jan 8 08:58:23 2013 (r245161) @@ -7,14 +7,14 @@ ; (e.g. reference this file in the "cache . " ; configuration file of BIND domain name servers). ; -; This file is made available by InterNIC +; This file is made available by InterNIC ; under anonymous FTP as -; file /domain/named.root +; file /domain/named.cache ; on server FTP.INTERNIC.NET ; -OR- RS.INTERNIC.NET ; -; last update: Jun 8, 2011 -; related version of root zone: 2011060800 +; last update: Jan 3, 2013 +; related version of root zone: 2013010300 ; ; formerly NS.INTERNIC.NET ; @@ -35,7 +35,7 @@ C.ROOT-SERVERS.NET. 3600000 A ; FORMERLY TERP.UMD.EDU ; . 3600000 NS D.ROOT-SERVERS.NET. -D.ROOT-SERVERS.NET. 3600000 A 128.8.10.90 +D.ROOT-SERVERS.NET. 3600000 A 199.7.91.13 D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2D::D ; ; FORMERLY NS.NASA.GOV From owner-svn-src-stable-8@FreeBSD.ORG Thu Jan 10 23:39:29 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 44EA2FA4; Thu, 10 Jan 2013 23:39:29 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 2B68289; Thu, 10 Jan 2013 23:39:29 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0ANdTr2074313; Thu, 10 Jan 2013 23:39:29 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0ANdTev074312; Thu, 10 Jan 2013 23:39:29 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201301102339.r0ANdTev074312@svn.freebsd.org> From: Warren Block Date: Thu, 10 Jan 2013 23:39:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245273 - stable/8/sbin/geom/class/part X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2013 23:39:29 -0000 Author: wblock (doc committer) Date: Thu Jan 10 23:39:28 2013 New Revision: 245273 URL: http://svnweb.freebsd.org/changeset/base/245273 Log: MFC r245012: Document the output of the show command. Modified version of patch provided by Bas Smeelen . Use of 'gpart list' suggested by by Andrey V. Elsukov . PR: docs/174270 Submitted by: Ronald F.Guilmette Reviewed by: ae (block sizes) Modified: stable/8/sbin/geom/class/part/gpart.8 Directory Properties: stable/8/sbin/geom/class/part/ (props changed) Modified: stable/8/sbin/geom/class/part/gpart.8 ============================================================================== --- stable/8/sbin/geom/class/part/gpart.8 Thu Jan 10 23:36:02 2013 (r245272) +++ stable/8/sbin/geom/class/part/gpart.8 Thu Jan 10 23:39:28 2013 (r245273) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd March 19, 2012 +.Dd January 3, 2013 .Dt GPART 8 .Os .Sh NAME @@ -453,8 +453,14 @@ about its use. .El .\" ==== SHOW ==== .It Cm show -Show the current partition information of the specified geoms -or all geoms if none are specified. +Show current partition information for the specified geoms, or all +geoms if none are specified. +The default output includes the logical starting block of each +partition, the partition size in blocks, the partition index number, +the partition type, and a human readable partition size. +Block sizes and locations are based on the device's Sectorsize +as shown by +.Cm gpart list . Additional options include: .Bl -tag -width 10n .It Fl l @@ -919,7 +925,7 @@ and .Cm list will report about corrupt tables. .Pp -If the size of the device has changed (e.g.\& volume expansion) the +If the size of the device has changed (e.g.,\& volume expansion) the secondary GPT header will no longer be located in the last sector. This is not a metadata corruption, but it is dangerous because any corruption of the primary GPT will lead to loss of the partition table. @@ -979,14 +985,14 @@ This may break a mirrored volume and lea Exit status is 0 on success, and 1 if the command fails. .Sh EXAMPLES Create a GPT scheme on -.Pa ad0 : +.Pa ada0 : .Bd -literal -offset indent -/sbin/gpart create -s GPT ad0 +/sbin/gpart create -s GPT ada0 .Ed .Pp Embed GPT bootstrap code into a protective MBR: .Bd -literal -offset indent -/sbin/gpart bootcode -b /boot/pmbr ad0 +/sbin/gpart bootcode -b /boot/pmbr ada0 .Ed .Pp Create a dedicated @@ -1002,19 +1008,19 @@ or the GPT boot you are planning to writ A size of 15 blocks (7680 bytes) would be sufficient for booting from UFS but 128 blocks (64 KB) is used in this example to reserve some space for potential -future need (e.g.\& a larger +future need (e.g.,\& a larger .Pa /boot/gptzfsboot for booting from a ZFS partition). .Bd -literal -offset indent -/sbin/gpart add -b 34 -s 128 -t freebsd-boot ad0 -/sbin/gpart bootcode -p /boot/gptboot -i 1 ad0 +/sbin/gpart add -b 34 -s 128 -t freebsd-boot ada0 +/sbin/gpart bootcode -p /boot/gptboot -i 1 ada0 .Ed .Pp Create a 512MB-sized .Cm freebsd-ufs partition to contain a UFS filesystem from which the system can boot. .Bd -literal -offset indent -/sbin/gpart add -b 162 -s 1048576 -t freebsd-ufs ad0 +/sbin/gpart add -b 162 -s 1048576 -t freebsd-ufs ada0 .Ed .Pp Create an MBR scheme on From owner-svn-src-stable-8@FreeBSD.ORG Fri Jan 11 00:41:17 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 74253835; Fri, 11 Jan 2013 00:41:17 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 4C73036A; Fri, 11 Jan 2013 00:41:17 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0B0fHY9093376; Fri, 11 Jan 2013 00:41:17 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0B0fGdd093372; Fri, 11 Jan 2013 00:41:16 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201301110041.r0B0fGdd093372@svn.freebsd.org> From: Xin LI Date: Fri, 11 Jan 2013 00:41:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245278 - stable/8/lib/libc/nls X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jan 2013 00:41:17 -0000 Author: delphij Date: Fri Jan 11 00:41:16 2013 New Revision: 245278 URL: http://svnweb.freebsd.org/changeset/base/245278 Log: MFC 244756 + 244757: Add Simplified Chinese catalogs. Added: stable/8/lib/libc/nls/zh_CN.GB18030.msg - copied unchanged from r244757, head/lib/libc/nls/zh_CN.GB18030.msg stable/8/lib/libc/nls/zh_CN.GB2312.msg - copied unchanged from r244757, head/lib/libc/nls/zh_CN.GB2312.msg stable/8/lib/libc/nls/zh_CN.UTF-8.msg - copied unchanged from r244756, head/lib/libc/nls/zh_CN.UTF-8.msg Modified: stable/8/lib/libc/nls/Makefile.inc Directory Properties: stable/8/lib/libc/ (props changed) Modified: stable/8/lib/libc/nls/Makefile.inc ============================================================================== --- stable/8/lib/libc/nls/Makefile.inc Fri Jan 11 00:40:03 2013 (r245277) +++ stable/8/lib/libc/nls/Makefile.inc Fri Jan 11 00:41:16 2013 (r245278) @@ -35,3 +35,6 @@ NLS+= ru_RU.KOI8-R NLS+= sk_SK.ISO8859-2 NLS+= sv_SE.ISO8859-1 NLS+= uk_UA.UTF-8 +NLS+= zh_CN.GB18030 +NLS+= zh_CN.GB2312 +NLS+= zh_CN.UTF-8 Copied: stable/8/lib/libc/nls/zh_CN.GB18030.msg (from r244757, head/lib/libc/nls/zh_CN.GB18030.msg) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ stable/8/lib/libc/nls/zh_CN.GB18030.msg Fri Jan 11 00:41:16 2013 (r245278, copy of r244757, head/lib/libc/nls/zh_CN.GB18030.msg) @@ -0,0 +1,297 @@ +$ $FreeBSD$ +$ +$ Message catalog for zh_CN.GB18030 locale +$ +$ Derived from FreeBSD: head/lib/libc/nls/zh_CN.UTF-8.msg 244756 2012-12-28 01:09:30Z delphij +$ +$ strerror() support catalog +$ +$set 1 +$ EPERM +1 IJ +$ ENOENT +2 ļĿ¼ +$ ESRCH +3 ̲ +$ EINTR +4 ϵͳֹ +$ EIO +5 / +$ ENXIO +6 δõ豸 +$ E2BIG +7 +$ ENOEXEC +8 ִļʽ +$ EBADF +9 ļЧ +$ ECHILD +10 ָӽ̲ +$ EDEADLK +11 ˲ᵼ +$ ENOMEM +12 ޷ڴ +$ EACCES +13 ܾ +$ EFAULT +14 Чַ +$ ENOTBLK +15 òҪ豸 +$ EBUSY +16 豸ʹ +$ EEXIST +17 ļѴ +$ EXDEV +18 ӿ豸 +$ ENODEV +19 豸ִ֧˲ +$ ENOTDIR +20 Ŀ¼ +$ EISDIR +21 ΪĿ¼ +$ EINVAL +22 Ч +$ ENFILE +23 ϵͳļ +$ EMFILE +24 ̴ļ +$ ENOTTY +25 Ч豸 ioctl +$ ETXTBSY +26 ִļæ +$ EFBIG +27 ļ +$ ENOSPC +28 豸޿ÿռ +$ ESPIPE +29 ִ seek +$ EROFS +30 ļϵͳֻ +$ EMLINK +31 ļӹ +$ EPIPE +32 ֹܵ +$ EDOM +33 ֵԽ +$ ERANGE +34 +$ EAGAIN, EWOULDBLOCK +35 Դʱ +$ EINPROGRESS +36 +$ EALREADY +37 ѿʼ +$ ENOTSOCK +38 ڷ socket ִ socket +$ EDESTADDRREQ +39 ҪĿĵַ +$ EMSGSIZE +40 Ϣ +$ EPROTOTYPE +41 socketЭʹ +$ ENOPROTOOPT +42 Э鲻 +$ EPROTONOSUPPORT +43 ֵ֧Э +$ ESOCKTNOSUPPORT +44 ֵ֧ socket +$ EOPNOTSUPP +45 ֵ֧IJ +$ EPFNOSUPPORT +46 ֵ֧Э +$ EAFNOSUPPORT +47 Э岻ֵ֧ĵַ +$ EADDRINUSE +48 ַѱռ +$ EADDRNOTAVAIL +49 ޷ָĵַ +$ ENETDOWN +50 ѹر +$ ENETUNREACH +51 粻ɴ +$ ENETRESET +52 λӶʧ +$ ECONNABORTED +53 µֹ +$ ECONNRESET +54 Էλ +$ ENOBUFS +55 ռ䲻 +$ EISCONN +56 socket +$ ENOTCONN +57 socket δ +$ ESHUTDOWN +58 socket shutdown ֮޷ +$ ETOOMANYREFS +59 ࣺ޷ƴ +$ ETIMEDOUT +60 ʱ +$ ECONNREFUSED +61 ܾ +$ ELOOP +62 Ӳ +$ ENAMETOOLONG +63 ļ +$ EHOSTDOWN +64 ѹر +$ EHOSTUNREACH +65 ûе· +$ ENOTEMPTY +66 Ŀ¼ǿ +$ EPROCLIM +67 +$ EUSERS +68 û +$ EDQUOT +69 ̿ռ +$ ESTALE +70 NFS ļʧЧ +$ EREMOTE +71 ԶĿ¼ +$ EBADRPC +72 RPC ṹЧ +$ ERPCMISMATCH +73 RPC 汾 +$ EPROGUNAVAIL +74 RPC 򲻿 +$ EPROGMISMATCH +75 汾 +$ EPROCUNAVAIL +76 δṩԶ̺ +$ ENOLCK +77 ֧ +$ ENOSYS +78 δʵ +$ EFTYPE +79 ļͻʽЧ +$ EAUTH +80 Ч +$ ENEEDAUTH +81 ƾ +$ EIDRM +82 ޱʶ +$ ENOMSG +83 Ϣ +$ EOVERFLOW +84 ֵ +$ ECANCELED +85 ȡ +$ EILSEQ +86 Чַ +$ ENOATTR +87 չ +$ EDOOFUS +88 ƴ +$ EBADMSG +89 ЧϢ +$ EMULTIHOP +90 Multihop attempted +$ ENOLINK +91 Link has been severed +$ EPROTO +92 Э +$ ENOTCAPABLE +93 Ȩܲ +$ +$ strsignal() support catalog +$ +$set 2 +$ SIGHUP +1 ն·Ҷ +$ SIGINT +2 ж +$ SIGQUIT +3 ˳ +$ SIGILL +4 Чָ +$ SIGTRAP +5 /BPT +$ SIGABRT +6 ֹ +$ SIGEMT +7 EMT +$ SIGFPE +8 쳣 +$ SIGKILL +9 ǿֹ +$ SIGBUS +10 ϵͳڴԽ +$ SIGSEGV +11 ڴԽ +$ SIGSYS +12 Чϵͳ +$ SIGPIPE +13 дܵʱȡ߲ +$ SIGALRM +14 ʵʱʱ +$ SIGTERM +15 ֹ +$ SIGURG +16 I/O ״ +$ SIGSTOP +17 (ź) +$ SIGTSTP +18 +$ SIGCONT +19 +$ SIGCHLD +20 ӽֹ +$ SIGTTIN +21 TTY +$ SIGTTOU +22 TTY +$ SIGIO +23 I/O +$ SIGXCPU +24 CPU ʹʱ +$ SIGXFSZ +25 ļߴ +$ SIGVTALRM +26 ⵹ʱ +$ SIGPROF +27 ʱ +$ SIGWINCH +28 ڳߴ仯 +$ SIGINFO +29 Ϣ +$ SIGUSR1 +30 ûԶź 1 +$ SIGUSR2 +31 ûԶź 2 +$ +$ gai_strerror() support catalog +$ +$set 3 +$ 1 (obsolete) +1 ʹ˲ֵ֧ĵַ +$ EAI_AGAIN +2 ʱ޷ +$ EAI_BADFLAGS +3 Ч ai_flags ֵ +$ EAI_FAIL +4 ʱ޷ָĴ +$ EAI_FAMILY +5 ֵ֧ĵַϢ +$ EAI_MEMORY +6 ڴʧ +$ 7 (obsolete) +7 ĵַ +$ EAI_NONAME +8 δ֪ +$ EAI_SERVICE +9 ׽Ͳִ֧˷ +$ EAI_SOCKTYPE +10 ֵ֧׽ +$ EAI_SYSTEM +11 ϵͳ÷ errno +$ EAI_BADHINTS +12 Чʾ +$ EAI_PROTOCOL +13 δ֪Э +$ EAI_OVERFLOW +14 +$ 0 +32766 ɹ +$ NL_MSGMAX +32767 δ֪ Copied: stable/8/lib/libc/nls/zh_CN.GB2312.msg (from r244757, head/lib/libc/nls/zh_CN.GB2312.msg) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ stable/8/lib/libc/nls/zh_CN.GB2312.msg Fri Jan 11 00:41:16 2013 (r245278, copy of r244757, head/lib/libc/nls/zh_CN.GB2312.msg) @@ -0,0 +1,297 @@ +$ $FreeBSD$ +$ +$ Message catalog for zh_CN.GB2312 locale +$ +$ Derived from FreeBSD: head/lib/libc/nls/zh_CN.UTF-8.msg 244756 2012-12-28 01:09:30Z delphij +$ +$ strerror() support catalog +$ +$set 1 +$ EPERM +1 IJ +$ ENOENT +2 ļĿ¼ +$ ESRCH +3 ̲ +$ EINTR +4 ϵͳֹ +$ EIO +5 / +$ ENXIO +6 δõ豸 +$ E2BIG +7 +$ ENOEXEC +8 ִļʽ +$ EBADF +9 ļЧ +$ ECHILD +10 ָӽ̲ +$ EDEADLK +11 ˲ᵼ +$ ENOMEM +12 ޷ڴ +$ EACCES +13 ܾ +$ EFAULT +14 Чַ +$ ENOTBLK +15 òҪ豸 +$ EBUSY +16 豸ʹ +$ EEXIST +17 ļѴ +$ EXDEV +18 ӿ豸 +$ ENODEV +19 豸ִ֧˲ +$ ENOTDIR +20 Ŀ¼ +$ EISDIR +21 ΪĿ¼ +$ EINVAL +22 Ч +$ ENFILE +23 ϵͳļ +$ EMFILE +24 ̴ļ +$ ENOTTY +25 Ч豸 ioctl +$ ETXTBSY +26 ִļæ +$ EFBIG +27 ļ +$ ENOSPC +28 豸޿ÿռ +$ ESPIPE +29 ִ seek +$ EROFS +30 ļϵͳֻ +$ EMLINK +31 ļӹ +$ EPIPE +32 ֹܵ +$ EDOM +33 ֵԽ +$ ERANGE +34 +$ EAGAIN, EWOULDBLOCK +35 Դʱ +$ EINPROGRESS +36 +$ EALREADY +37 ѿʼ +$ ENOTSOCK +38 ڷ socket ִ socket +$ EDESTADDRREQ +39 ҪĿĵַ +$ EMSGSIZE +40 Ϣ +$ EPROTOTYPE +41 socketЭʹ +$ ENOPROTOOPT +42 Э鲻 +$ EPROTONOSUPPORT +43 ֵ֧Э +$ ESOCKTNOSUPPORT +44 ֵ֧ socket +$ EOPNOTSUPP +45 ֵ֧IJ +$ EPFNOSUPPORT +46 ֵ֧Э +$ EAFNOSUPPORT +47 Э岻ֵ֧ĵַ +$ EADDRINUSE +48 ַѱռ +$ EADDRNOTAVAIL +49 ޷ָĵַ +$ ENETDOWN +50 ѹر +$ ENETUNREACH +51 粻ɴ +$ ENETRESET +52 λӶʧ +$ ECONNABORTED +53 µֹ +$ ECONNRESET +54 Էλ +$ ENOBUFS +55 ռ䲻 +$ EISCONN +56 socket +$ ENOTCONN +57 socket δ +$ ESHUTDOWN +58 socket shutdown ֮޷ +$ ETOOMANYREFS +59 ࣺ޷ƴ +$ ETIMEDOUT +60 ʱ +$ ECONNREFUSED +61 ܾ +$ ELOOP +62 Ӳ +$ ENAMETOOLONG +63 ļ +$ EHOSTDOWN +64 ѹر +$ EHOSTUNREACH +65 ûе· +$ ENOTEMPTY +66 Ŀ¼ǿ +$ EPROCLIM +67 +$ EUSERS +68 û +$ EDQUOT +69 ̿ռ +$ ESTALE +70 NFS ļʧЧ +$ EREMOTE +71 ԶĿ¼ +$ EBADRPC +72 RPC ṹЧ +$ ERPCMISMATCH +73 RPC 汾 +$ EPROGUNAVAIL +74 RPC 򲻿 +$ EPROGMISMATCH +75 汾 +$ EPROCUNAVAIL +76 δṩԶ̺ +$ ENOLCK +77 ֧ +$ ENOSYS +78 δʵ +$ EFTYPE +79 ļͻʽЧ +$ EAUTH +80 Ч +$ ENEEDAUTH +81 ƾ +$ EIDRM +82 ޱʶ +$ ENOMSG +83 Ϣ +$ EOVERFLOW +84 ֵ +$ ECANCELED +85 ȡ +$ EILSEQ +86 Чַ +$ ENOATTR +87 չ +$ EDOOFUS +88 ƴ +$ EBADMSG +89 ЧϢ +$ EMULTIHOP +90 Multihop attempted +$ ENOLINK +91 Link has been severed +$ EPROTO +92 Э +$ ENOTCAPABLE +93 Ȩܲ +$ +$ strsignal() support catalog +$ +$set 2 +$ SIGHUP +1 ն·Ҷ +$ SIGINT +2 ж +$ SIGQUIT +3 ˳ +$ SIGILL +4 Чָ +$ SIGTRAP +5 /BPT +$ SIGABRT +6 ֹ +$ SIGEMT +7 EMT +$ SIGFPE +8 쳣 +$ SIGKILL +9 ǿֹ +$ SIGBUS +10 ϵͳڴԽ +$ SIGSEGV +11 ڴԽ +$ SIGSYS +12 Чϵͳ +$ SIGPIPE +13 дܵʱȡ߲ +$ SIGALRM +14 ʵʱʱ +$ SIGTERM +15 ֹ +$ SIGURG +16 I/O ״ +$ SIGSTOP +17 (ź) +$ SIGTSTP +18 +$ SIGCONT +19 +$ SIGCHLD +20 ӽֹ +$ SIGTTIN +21 TTY +$ SIGTTOU +22 TTY +$ SIGIO +23 I/O +$ SIGXCPU +24 CPU ʹʱ +$ SIGXFSZ +25 ļߴ +$ SIGVTALRM +26 ⵹ʱ +$ SIGPROF +27 ʱ +$ SIGWINCH +28 ڳߴ仯 +$ SIGINFO +29 Ϣ +$ SIGUSR1 +30 ûԶź 1 +$ SIGUSR2 +31 ûԶź 2 +$ +$ gai_strerror() support catalog +$ +$set 3 +$ 1 (obsolete) +1 ʹ˲ֵ֧ĵַ +$ EAI_AGAIN +2 ʱ޷ +$ EAI_BADFLAGS +3 Ч ai_flags ֵ +$ EAI_FAIL +4 ʱ޷ָĴ +$ EAI_FAMILY +5 ֵ֧ĵַϢ +$ EAI_MEMORY +6 ڴʧ +$ 7 (obsolete) +7 ĵַ +$ EAI_NONAME +8 δ֪ +$ EAI_SERVICE +9 ׽Ͳִ֧˷ +$ EAI_SOCKTYPE +10 ֵ֧׽ +$ EAI_SYSTEM +11 ϵͳ÷ errno +$ EAI_BADHINTS +12 Чʾ +$ EAI_PROTOCOL +13 δ֪Э +$ EAI_OVERFLOW +14 +$ 0 +32766 ɹ +$ NL_MSGMAX +32767 δ֪ Copied: stable/8/lib/libc/nls/zh_CN.UTF-8.msg (from r244756, head/lib/libc/nls/zh_CN.UTF-8.msg) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ stable/8/lib/libc/nls/zh_CN.UTF-8.msg Fri Jan 11 00:41:16 2013 (r245278, copy of r244756, head/lib/libc/nls/zh_CN.UTF-8.msg) @@ -0,0 +1,295 @@ +$ $FreeBSD$ +$ +$ Message catalog for zh_CN.UTF-8 locale +$ +$ strerror() support catalog +$ +$set 1 +$ EPERM +1 不允许的操作 +$ ENOENT +2 文件或目录不存在 +$ ESRCH +3 进程不存在 +$ EINTR +4 系统调用中止 +$ EIO +5 输入/输出错误 +$ ENXIO +6 未配置的设备 +$ E2BIG +7 参数表过长 +$ ENOEXEC +8 可执行文件格式错误 +$ EBADF +9 文件描述符无效 +$ ECHILD +10 指定子进程不存在 +$ EDEADLK +11 此操作会导致死锁 +$ ENOMEM +12 无法分配内存 +$ EACCES +13 拒绝访问 +$ EFAULT +14 无效地址 +$ ENOTBLK +15 该操作需要块设备 +$ EBUSY +16 设备使用中 +$ EEXIST +17 文件已存在 +$ EXDEV +18 链接跨设备 +$ ENODEV +19 设备不支持此操作 +$ ENOTDIR +20 对象非目录 +$ EISDIR +21 对象为目录 +$ EINVAL +22 参数无效 +$ ENFILE +23 系统打开文件过多 +$ EMFILE +24 进程打开文件过多 +$ ENOTTY +25 无效设备 ioctl +$ ETXTBSY +26 可执行文件忙 +$ EFBIG +27 文件过大 +$ ENOSPC +28 设备无可用空间 +$ ESPIPE +29 不允许执行 seek 操作 +$ EROFS +30 文件系统只读 +$ EMLINK +31 文件链接过多 +$ EPIPE +32 管道已中止 +$ EDOM +33 数值参数越界 +$ ERANGE +34 结果过大 +$ EAGAIN, EWOULDBLOCK +35 资源暂时不可用 +$ EINPROGRESS +36 操作进行中 +$ EALREADY +37 操作已开始 +$ ENOTSOCK +38 尝试在非 socket 上执行 socket 操作 +$ EDESTADDRREQ +39 需要目的地址 +$ EMSGSIZE +40 消息过长 +$ EPROTOTYPE +41 socket协议类型错误 +$ ENOPROTOOPT +42 协议不可用 +$ EPROTONOSUPPORT +43 不支持的协议 +$ ESOCKTNOSUPPORT +44 不支持的 socket 类型 +$ EOPNOTSUPP +45 不支持的操作 +$ EPFNOSUPPORT +46 不支持的协议族 +$ EAFNOSUPPORT +47 协议族不支持的地址族 +$ EADDRINUSE +48 地址已被占用 +$ EADDRNOTAVAIL +49 无法指定请求的地址 +$ ENETDOWN +50 网络已关闭 +$ ENETUNREACH +51 网络不可达 +$ ENETRESET +52 复位导致网络连接丢失 +$ ECONNABORTED +53 软件导致的连接中止 +$ ECONNRESET +54 对方复位了连接 +$ ENOBUFS +55 缓冲区空间不足 +$ EISCONN +56 socket 已连接 +$ ENOTCONN +57 socket 未连接 +$ ESHUTDOWN +58 socket shutdown 之后无法发送数据 +$ ETOOMANYREFS +59 引用数过多:无法拼接 +$ ETIMEDOUT +60 操作超时 +$ ECONNREFUSED +61 拒绝连接 +$ ELOOP +62 符号链接层数过多 +$ ENAMETOOLONG +63 文件名过长 +$ EHOSTDOWN +64 主机已关闭 +$ EHOSTUNREACH +65 没有到主机的路由 +$ ENOTEMPTY +66 目录非空 +$ EPROCLIM +67 进程数超限 +$ EUSERS +68 用户数超限 +$ EDQUOT +69 磁盘空间配额超限 +$ ESTALE +70 NFS 文件句柄已失效 +$ EREMOTE +71 远程目录层数过多 +$ EBADRPC +72 RPC 结构无效 +$ ERPCMISMATCH +73 RPC 版本错误 +$ EPROGUNAVAIL +74 RPC 程序不可用 +$ EPROGMISMATCH +75 程序版本错误 +$ EPROCUNAVAIL +76 未提供的远程函数 +$ ENOLCK +77 不支持锁 +$ ENOSYS +78 功能未实现 +$ EFTYPE +79 文件类型或格式无效 +$ EAUTH +80 身份无效 +$ ENEEDAUTH +81 无信任凭据 +$ EIDRM +82 无标识符 +$ ENOMSG +83 无消息类型 +$ EOVERFLOW +84 数值溢出 +$ ECANCELED +85 操作已取消 +$ EILSEQ +86 无效字符序列 +$ ENOATTR +87 无扩展属性 +$ EDOOFUS +88 程序设计错误 +$ EBADMSG +89 无效消息 +$ EMULTIHOP +90 Multihop attempted +$ ENOLINK +91 Link has been severed +$ EPROTO +92 协议错误 +$ ENOTCAPABLE +93 权能不足 +$ +$ strsignal() support catalog +$ +$set 2 +$ SIGHUP +1 终端线路挂断 +$ SIGINT +2 中断 +$ SIGQUIT +3 退出 +$ SIGILL +4 无效指令 +$ SIGTRAP +5 跟踪/BPT 陷阱 +$ SIGABRT +6 终止陷阱 +$ SIGEMT +7 EMT 陷阱 +$ SIGFPE +8 浮点异常 +$ SIGKILL +9 强制终止进程 +$ SIGBUS +10 系统内存访问越界 +$ SIGSEGV +11 内存访问越界 +$ SIGSYS +12 无效系统调用 +$ SIGPIPE +13 写管道时读取者不存在 +$ SIGALRM +14 实时倒计时到期 +$ SIGTERM +15 终止 +$ SIGURG +16 需立即处理的 I/O 紧急状况 +$ SIGSTOP +17 挂起 (信号) +$ SIGTSTP +18 挂起 +$ SIGCONT +19 继续运行 +$ SIGCHLD +20 子进程终止 +$ SIGTTIN +21 TTY 输入阻塞 +$ SIGTTOU +22 TTY 输出阻塞 +$ SIGIO +23 I/O 就绪 +$ SIGXCPU +24 CPU 使用时间过长 +$ SIGXFSZ +25 文件尺寸过大 +$ SIGVTALRM +26 虚拟倒计时到期 +$ SIGPROF +27 剖析倒计时到期 +$ SIGWINCH +28 窗口尺寸变化 +$ SIGINFO +29 请求信息 +$ SIGUSR1 +30 用户自定义信号 1 +$ SIGUSR2 +31 用户自定义信号 2 +$ +$ gai_strerror() support catalog +$ +$set 3 +$ 1 (obsolete) +1 主机名使用了不支持的地址类型 +$ EAI_AGAIN +2 暂时无法解析名称 +$ EAI_BADFLAGS +3 无效的 ai_flags 值 +$ EAI_FAIL +4 解析名称时出现无法恢复的错误 +$ EAI_FAMILY +5 不支持的地址信息类型 +$ EAI_MEMORY +6 内存分配失败 +$ 7 (obsolete) +7 主机名无相关联的地址 +$ EAI_NONAME +8 未知的主机名或服务名 +$ EAI_SERVICE +9 套接字类型不支持此服务名 +$ EAI_SOCKTYPE +10 不支持的套接字类型 +$ EAI_SYSTEM +11 系统调用返回了 errno 错误 +$ EAI_BADHINTS +12 无效提示参数 +$ EAI_PROTOCOL +13 未知协议 +$ EAI_OVERFLOW +14 参数缓冲溢出 +$ 0 +32766 成功 +$ NL_MSGMAX +32767 未知错误 From owner-svn-src-stable-8@FreeBSD.ORG Sat Jan 12 00:59:41 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D0A6FA6D; Sat, 12 Jan 2013 00:59:41 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id C32E8CE3; Sat, 12 Jan 2013 00:59:41 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0C0xfuo023361; Sat, 12 Jan 2013 00:59:41 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0C0xfKM023360; Sat, 12 Jan 2013 00:59:41 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201301120059.r0C0xfKM023360@svn.freebsd.org> From: Glen Barber Date: Sat, 12 Jan 2013 00:59:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r245321 - stable/8/sys/sys X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jan 2013 00:59:41 -0000 Author: gjb (doc,ports committer) Date: Sat Jan 12 00:59:41 2013 New Revision: 245321 URL: http://svnweb.freebsd.org/changeset/base/245321 Log: MFC r245236: - Update where porters handbook lives. Modified: stable/8/sys/sys/param.h Directory Properties: stable/8/sys/ (props changed) stable/8/sys/sys/ (props changed) Modified: stable/8/sys/sys/param.h ============================================================================== --- stable/8/sys/sys/param.h Sat Jan 12 00:59:15 2013 (r245320) +++ stable/8/sys/sys/param.h Sat Jan 12 00:59:41 2013 (r245321) @@ -48,9 +48,9 @@ * __FreeBSD_version numbers are documented in the Porter's Handbook. * If you bump the version for any reason, you should update the documentation * there. - * Currently this lives here: + * Currently this lives here in the doc/ repository: * - * doc/en_US.ISO8859-1/books/porters-handbook/book.sgml + * head/en_US.ISO8859-1/books/porters-handbook/book.xml * * scheme is: Rxx * 'R' is in the range 0 to 4 if this is a release branch or