From owner-svn-doc-all@FreeBSD.ORG Sun Mar 17 02:06:37 2013 Return-Path: Delivered-To: svn-doc-all@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 A87A8779; Sun, 17 Mar 2013 02:06:37 +0000 (UTC) (envelope-from eadler@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 8082BC2E; Sun, 17 Mar 2013 02:06:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2H26bIk097874; Sun, 17 Mar 2013 02:06:37 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2H26buj097873; Sun, 17 Mar 2013 02:06:37 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201303170206.r2H26buj097873@svn.freebsd.org> From: Eitan Adler Date: Sun, 17 Mar 2013 02:06:37 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41250 - head/en_US.ISO8859-1/books/arch-handbook/driverbasics X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Mar 2013 02:06:37 -0000 Author: eadler Date: Sun Mar 17 02:06:36 2013 New Revision: 41250 URL: http://svnweb.freebsd.org/changeset/doc/41250 Log: Some additional changes from jhb: - It now initializes the buffer to a known-good state (length of 0) so that you can't do a buffer overrun by reading it without writing to it. - It doesn't include the trailing null character in 'len' and always leaves room for it during writes by restricting writes to writing only 255 chars, but letting reads read 256 chars. This means after init you can do a read of one byte to get an empty string, and if you write "foo" (3 bytes) you can read back "foo\0" (I think this is the original intent). Letting 'len' not hold the null simplifies a fair bit of logic in write. - Use 'td' for thread pointers, not 'p' (which is from when this was a 'struct proc *'). - Some style fixes. - Don't ever set uio_offset directly, uiomove() already changes it, and in fact we should read it after the write to handle partial writes. Submitted by: jhb Approved by: bcr (mentor, implicit) Modified: head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml Modified: head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml Sat Mar 16 22:58:14 2013 (r41249) +++ head/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml Sun Mar 17 02:06:36 2013 (r41250) @@ -188,7 +188,7 @@ KMOD=skeleton #include <sys/uio.h> /* uio struct */ #include <sys/malloc.h> -#define BUFFERSIZE 256 +#define BUFFERSIZE 255 /* Function prototypes */ static d_open_t echo_open; @@ -207,7 +207,7 @@ static struct cdevsw echo_cdevsw = { }; struct s_echo { - char msg[BUFFERSIZE]; + char msg[BUFFERSIZE + 1]; int len; }; @@ -222,7 +222,6 @@ MALLOC_DEFINE(M_ECHOBUF, "echobuffer", " * This function is called by the kld[un]load(2) system calls to * determine what actions to take when a module is loaded or unloaded. */ - static int echo_loader(struct module *m __unused, int what, void *arg __unused) { @@ -241,8 +240,8 @@ echo_loader(struct module *m __unused, i if (error != 0) break; - /* kmalloc memory for use by this driver */ - echomsg = malloc(sizeof(*echomsg), M_ECHOBUF, M_WAITOK); + echomsg = malloc(sizeof(*echomsg), M_ECHOBUF, M_WAITOK | + M_ZERO); printf("Echo device loaded.\n"); break; case MOD_UNLOAD: @@ -258,7 +257,8 @@ echo_loader(struct module *m __unused, i } static int -echo_open(struct cdev *dev __unused, int oflags __unused, int devtype __unused, struct thread *p __unused) +echo_open(struct cdev *dev __unused, int oflags __unused, int devtype __unused, + struct thread *td __unused) { int error = 0; @@ -267,7 +267,8 @@ echo_open(struct cdev *dev __unused, int } static int -echo_close(struct cdev *dev __unused, int fflag __unused, int devtype __unused, struct thread *p __unused) +echo_close(struct cdev *dev __unused, int fflag __unused, int devtype __unused, + struct thread *td __unused) { uprintf("Closing device \"echo\".\n"); @@ -279,19 +280,20 @@ echo_close(struct cdev *dev __unused, in * echo_write() and returns it to userland for accessing. * uio(9) */ - static int echo_read(struct cdev *dev __unused, struct uio *uio, int ioflag __unused) { - int error, amt; + size_t amt; + int error; /* * How big is this read operation? Either as big as the user wants, - * or as big as the remaining data + * or as big as the remaining data. Note that the 'len' does not + * include the trailing null character. */ + amt = MIN(uio->uio_resid, uio->uio_offset >= echomsg->len + 1 ? 0 : + echomsg->len + 1 - uio->uio_offset); - amt = MIN(uio->uio_resid, echomsg->len - uio->uio_offset); - uio->uio_offset += amt; if ((error = uiomove(echomsg->msg, amt, uio)) != 0) uprintf("uiomove failed!\n"); @@ -302,13 +304,11 @@ echo_read(struct cdev *dev __unused, str * echo_write takes in a character string and saves it * to buf for later accessing. */ - static int echo_write(struct cdev *dev __unused, struct uio *uio, int ioflag __unused) { - int error, amt; - - /* Copy the string in from user memory to kernel memory */ + size_t amt; + int error; /* * We either write from the beginning or are appending -- do @@ -317,32 +317,25 @@ echo_write(struct cdev *dev __unused, st if (uio->uio_offset != 0 && (uio->uio_offset != echomsg->len)) return (EINVAL); - /* - * This is new message, reset length - */ + /* This is a new message, reset length */ if (uio->uio_offset == 0) echomsg->len = 0; - /* NULL character should be overridden */ - if (echomsg->len != 0) - echomsg->len--; - /* Copy the string in from user memory to kernel memory */ amt = MIN(uio->uio_resid, (BUFFERSIZE - echomsg->len)); error = uiomove(echomsg->msg + uio->uio_offset, amt, uio); - /* Now we need to null terminate, then record the length */ - echomsg->len += amt + 1; - uio->uio_offset += amt + 1; - echomsg->msg[echomsg->len - 1] = 0; + /* Now we need to null terminate and record the length */ + echomsg->len = uio->uio_offset; + echomsg->msg[echomsg->len] = 0; if (error != 0) uprintf("Write failed: bad address!\n"); return (error); } -DEV_MODULE(echo,echo_loader,NULL); +DEV_MODULE(echo, echo_loader, NULL); With this driver loaded try: From owner-svn-doc-all@FreeBSD.ORG Sun Mar 17 11:00:43 2013 Return-Path: Delivered-To: svn-doc-all@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 1F427B79; Sun, 17 Mar 2013 11:00:43 +0000 (UTC) (envelope-from gavin@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 0F24FB68; Sun, 17 Mar 2013 11:00:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2HB0g7P060445; Sun, 17 Mar 2013 11:00:42 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2HB0gNR060444; Sun, 17 Mar 2013 11:00:42 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201303171100.r2HB0gNR060444@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 17 Mar 2013 11:00:42 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41251 - head/en_US.ISO8859-1/htdocs X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Mar 2013 11:00:43 -0000 Author: gavin Date: Sun Mar 17 11:00:42 2013 New Revision: 41251 URL: http://svnweb.freebsd.org/changeset/doc/41251 Log: Mention x86-64 and x64 as alternative names for amd64. Modified: head/en_US.ISO8859-1/htdocs/about.xml Modified: head/en_US.ISO8859-1/htdocs/about.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/about.xml Sun Mar 17 02:06:36 2013 (r41250) +++ head/en_US.ISO8859-1/htdocs/about.xml Sun Mar 17 11:00:42 2013 (r41251) @@ -16,7 +16,8 @@

What is FreeBSD?

FreeBSD is an advanced operating system for x86 - compatible (including Pentium® and Athlon™), amd64 + compatible (including Pentium® and Athlon™), + amd64, x86-64 and x64 compatible (including Opteron™, Athlon™64, and EM64T), ARM, IA-64, PowerPC, PC-98 and UltraSPARC® architectures. It is derived from BSD, the version of From owner-svn-doc-all@FreeBSD.ORG Sun Mar 17 11:27:28 2013 Return-Path: Delivered-To: svn-doc-all@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 A9498219; Sun, 17 Mar 2013 11:27:28 +0000 (UTC) (envelope-from gavin@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 9135ACCC; Sun, 17 Mar 2013 11:27:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2HBRSJV069239; Sun, 17 Mar 2013 11:27:28 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2HBRSM2069238; Sun, 17 Mar 2013 11:27:28 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201303171127.r2HBRSM2069238@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 17 Mar 2013 11:27:28 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41252 - head/en_US.ISO8859-1/htdocs/developers X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Mar 2013 11:27:28 -0000 Author: gavin Date: Sun Mar 17 11:27:28 2013 New Revision: 41252 URL: http://svnweb.freebsd.org/changeset/doc/41252 Log: Note that the export of the src and ports tree from SVN to CVS should be viewed as legacy, and discourage people from relying on them. Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.xml Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/developers/cvs.xml Sun Mar 17 11:00:42 2013 (r41251) +++ head/en_US.ISO8859-1/htdocs/developers/cvs.xml Sun Mar 17 11:27:28 2013 (r41252) @@ -24,8 +24,11 @@

In June 2008, development of the base system moved to a different version control system, Subversion (SVN for short). The web - interface is available for browsing the repository. All changes are - also exported back to the CVS repository.

+ interface is available for browsing the repository. All changes + to the existing live branches (stable/9 and stable/8) are + also exported back to the legacy CVS repository, however the + CVS repositories are deprecated, and so existing users of them + should move away from doing so.

In May 2012, the FreeBSD Documentation Project moved from CVS to Subversion. Unlike the base system, the documentation SVN @@ -38,7 +41,7 @@ Subversion. There is a web interface for browsing the repository. The Ports tree is also exported back - to the CVS repository. + to the legacy CVS repository. It will cease to be exported early 2013.

From owner-svn-doc-all@FreeBSD.ORG Sun Mar 17 11:30:48 2013 Return-Path: Delivered-To: svn-doc-all@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 D1D4F444; Sun, 17 Mar 2013 11:30:48 +0000 (UTC) (envelope-from gavin@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 C21E5CDD; Sun, 17 Mar 2013 11:30:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2HBUm1o071361; Sun, 17 Mar 2013 11:30:48 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2HBUmDw071360; Sun, 17 Mar 2013 11:30:48 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201303171130.r2HBUmDw071360@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 17 Mar 2013 11:30:48 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41253 - head/en_US.ISO8859-1/htdocs/developers X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Mar 2013 11:30:48 -0000 Author: gavin Date: Sun Mar 17 11:30:48 2013 New Revision: 41253 URL: http://svnweb.freebsd.org/changeset/doc/41253 Log: Fix up whitespace: translators should ignore. Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.xml Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/developers/cvs.xml Sun Mar 17 11:27:28 2013 (r41252) +++ head/en_US.ISO8859-1/htdocs/developers/cvs.xml Sun Mar 17 11:30:48 2013 (r41253) @@ -38,11 +38,11 @@ Project SVN repository.

In July 2012, the FreeBSD Ports tree moved from CVS to - Subversion. There is a web interface for - browsing the repository. The Ports tree is also exported back - to the legacy CVS repository. - It will cease to be exported early 2013.

+ Subversion. There is a web interface for + browsing the repository. The Ports tree is also exported back + to the legacy CVS repository. + It will cease to be exported early 2013.

Legacy - CVS

@@ -53,14 +53,14 @@ the sources under control.

The old web interface can be accessed at the cvsweb instance - .

+ href="http://www.freebsd.org/cgi/cvsweb.cgi/">the cvsweb instance + .

Other options

- CTM if you are looking for - very low overhead, batch-mode access (basically, patches through - email).

+ CTM if you are looking for + very low overhead, batch-mode access (basically, patches through + email).

From owner-svn-doc-all@FreeBSD.ORG Sun Mar 17 11:35:05 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 002C6744; Sun, 17 Mar 2013 11:35:04 +0000 (UTC) (envelope-from gavin@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 E3150CF6; Sun, 17 Mar 2013 11:35:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2HBZ43g072137; Sun, 17 Mar 2013 11:35:04 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2HBZ4Es072136; Sun, 17 Mar 2013 11:35:04 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201303171135.r2HBZ4Es072136@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 17 Mar 2013 11:35:04 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41254 - head/en_US.ISO8859-1/htdocs X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Mar 2013 11:35:05 -0000 Author: gavin Date: Sun Mar 17 11:35:04 2013 New Revision: 41254 URL: http://svnweb.freebsd.org/changeset/doc/41254 Log: Improve the wording for the introduction for features in 8.x, and add reference to the jail improvements seen in 8.x Modified: head/en_US.ISO8859-1/htdocs/features.xml Modified: head/en_US.ISO8859-1/htdocs/features.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/features.xml Sun Mar 17 11:30:48 2013 (r41253) +++ head/en_US.ISO8859-1/htdocs/features.xml Sun Mar 17 11:35:04 2013 (r41254) @@ -102,10 +102,10 @@ for background fsck(8) even on unclean shutdowns. -

&os; 8.x brings many new +

&os; 8.x brought many new features and performance enhancements. With special focus on - a new USB stack, &os;-8.x shipped with experimental support - for NFSv4. As well as a new TTY layer. Which improves + a new USB stack, &os;-8.x also shipped with experimental support + for NFSv4. A new TTY layer was introduced, which improves scalability and resources handling in SMP enabled systems.

Builders Release Engineering Team - <re-builder@FreeBSD.org>

+ <re-builders@FreeBSD.org>

The builders release engineering team is responsible for building and packaging FreeBSD releases on the various supported @@ -312,9 +316,7 @@ acted upon without the proper approval from the appropriate entity.

@@ -326,7 +328,6 @@ @@ -376,7 +377,6 @@ @@ -388,10 +388,10 @@ services.

FTP/WWW Mirror Site Coordinators @@ -404,8 +404,11 @@ the general public to find their closest FTP/WWW mirror.

Perforce Repository Administrators @@ -418,12 +421,11 @@ administrators.

Postmaster Team @@ -468,6 +470,7 @@
  • &a.simon; <simon@FreeBSD.org>
  • &a.jesusr; <jesusr@FreeBSD.org>
  • &a.wosch; <wosch@FreeBSD.org>
  • +
  • &a.don; <don@FreeBSD.org>
  • From owner-svn-doc-all@FreeBSD.ORG Mon Mar 18 13:23:52 2013 Return-Path: Delivered-To: svn-doc-all@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 B8EB4B34; Mon, 18 Mar 2013 13:23:52 +0000 (UTC) (envelope-from ryusuke@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 94A2BA4C; Mon, 18 Mar 2013 13:23:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IDNqEv053725; Mon, 18 Mar 2013 13:23:52 GMT (envelope-from ryusuke@svn.freebsd.org) Received: (from ryusuke@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2IDNqRf053724; Mon, 18 Mar 2013 13:23:52 GMT (envelope-from ryusuke@svn.freebsd.org) Message-Id: <201303181323.r2IDNqRf053724@svn.freebsd.org> From: Ryusuke SUZUKI Date: Mon, 18 Mar 2013 13:23:52 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41261 - head/ja_JP.eucJP/htdocs/security X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 13:23:52 -0000 Author: ryusuke Date: Mon Mar 18 13:23:52 2013 New Revision: 41261 URL: http://svnweb.freebsd.org/changeset/doc/41261 Log: - Merge the following from the English version: r41074 -> r41257 head/ja_JP.eucJP/htdocs/security/security.xml Modified: head/ja_JP.eucJP/htdocs/security/security.xml Modified: head/ja_JP.eucJP/htdocs/security/security.xml ============================================================================== --- head/ja_JP.eucJP/htdocs/security/security.xml Mon Mar 18 08:04:03 2013 (r41260) +++ head/ja_JP.eucJP/htdocs/security/security.xml Mon Mar 18 13:23:52 2013 (r41261) @@ -6,7 +6,7 @@ ]> - + @@ -106,6 +106,11 @@ ¥ê¥ê¡¼¥¹¥¨¥ó¥¸¥Ë¥¢¥ê¥ó¥°¾Ä³°¡¢
    TrustedBSD ¥×¥í¥¸¥§¥¯¥È¾Ä³°¡¢¥·¥¹¥Æ¥à¥»¥­¥å¥ê¥Æ¥£¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤ÎÀìÌç²È + + &a.delphij; <delphij@FreeBSD.org> + ¥»¥­¥å¥ê¥Æ¥£¥ª¥Õ¥£¥µÊ亴 +

    ¤Þ¤¿¡¢¥»¥­¥å¥ê¥Æ¥£¥ª¥Õ¥£¥µ¤¬Áª½Ð¤·¤¿¥³¥ß¥Ã¥¿¡¼¥°¥ë¡¼¥×¤Ç¤¢¤ë From owner-svn-doc-all@FreeBSD.ORG Mon Mar 18 16:30:16 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4DE2CB8F; Mon, 18 Mar 2013 16:30:16 +0000 (UTC) (envelope-from brooks@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 3B8A2818; Mon, 18 Mar 2013 16:30:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IGUGaK012077; Mon, 18 Mar 2013 16:30:16 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2IGUGZA012076; Mon, 18 Mar 2013 16:30:16 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201303181630.r2IGUGZA012076@svn.freebsd.org> From: Brooks Davis Date: Mon, 18 Mar 2013 16:30:16 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41262 - head/en_US.ISO8859-1/books/porters-handbook X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 16:30:16 -0000 Author: brooks (src,ports committer) Date: Mon Mar 18 16:30:15 2013 New Revision: 41262 URL: http://svnweb.freebsd.org/changeset/doc/41262 Log: Document __FreeBSD_version 901501-901504. Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.xml Mon Mar 18 13:23:52 2013 (r41261) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Mon Mar 18 16:30:15 2013 (r41262) @@ -15700,6 +15700,34 @@ Reference: <http://www.freebsd.org/po + 901501 + November 11, 2012 + 9.1-STABLE after LIST_PREV() added to queue.h. + + + + 901502 + November 28, 2012 + 9.1-STABLE after USB serial jitter buffer requires + requires rebuild of USB serial device modules. + + + + 901503 + February 21, 2013 + 9.1-STABLE after USB moved to the driver structure + requiring a rebuild of all USB modules. Also indicates + the presence of nmtree. + + + + 901504 + March 15, 2013 + 9.1-STABLE after install gained -l, -M, -N and related + flags and cat gained the -l option. + + + 1000000 September 26, 2011 10.0-CURRENT. From owner-svn-doc-all@FreeBSD.ORG Mon Mar 18 18:29:19 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5FEDF5BA; Mon, 18 Mar 2013 18:29:19 +0000 (UTC) (envelope-from pgj@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 50C68F5A; Mon, 18 Mar 2013 18:29:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IITITA047118; Mon, 18 Mar 2013 18:29:18 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2IITI0e047116; Mon, 18 Mar 2013 18:29:18 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201303181829.r2IITI0e047116@svn.freebsd.org> From: Gabor Pali Date: Mon, 18 Mar 2013 18:29:18 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41263 - head/en_US.ISO8859-1/htdocs/internal X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 18:29:19 -0000 Author: pgj Date: Mon Mar 18 18:29:18 2013 New Revision: 41263 URL: http://svnweb.freebsd.org/changeset/doc/41263 Log: - Add guidelines on proposing committers Approved by: core Added: head/en_US.ISO8859-1/htdocs/internal/proposing-committers.xml (contents, props changed) Modified: head/en_US.ISO8859-1/htdocs/internal/Makefile head/en_US.ISO8859-1/htdocs/internal/new-account.xml Modified: head/en_US.ISO8859-1/htdocs/internal/Makefile ============================================================================== --- head/en_US.ISO8859-1/htdocs/internal/Makefile Mon Mar 18 16:30:15 2013 (r41262) +++ head/en_US.ISO8859-1/htdocs/internal/Makefile Mon Mar 18 18:29:18 2013 (r41263) @@ -22,6 +22,7 @@ DOCS+= machines.xml DOCS+= mirror.xml DOCS+= new-account.xml DOCS+= policies.xml +DOCS+= proposing-committers.xml DOCS+= releng.xml DOCS+= resources.xml DOCS+= statistic.xml Modified: head/en_US.ISO8859-1/htdocs/internal/new-account.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/internal/new-account.xml Mon Mar 18 16:30:15 2013 (r41262) +++ head/en_US.ISO8859-1/htdocs/internal/new-account.xml Mon Mar 18 18:29:18 2013 (r41263) @@ -29,7 +29,9 @@

    Any commit bit requests that do not follow the guidelines outlined above will be delayed (at best) or earn you negative vibrations from the - respective team / team secretary. + respective team / team secretary. For some guidelines on how the + proposal itself should be written, please see a brief summary.

    Responsible party for this procedure is:

    Added: head/en_US.ISO8859-1/htdocs/internal/proposing-committers.xml ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/en_US.ISO8859-1/htdocs/internal/proposing-committers.xml Mon Mar 18 18:29:18 2013 (r41263) @@ -0,0 +1,56 @@ + + +]> + + + + &title; + + $FreeBSD$ + + + + +

    The following paragraphs contain an advice from &a.kib;, member of + the Core Team, who summarizes what constitutes a good proposal, how + you as potential mentor, could increase your chances to have your + mentee granted a commit bit.

    + +

    When proposing somebody, you should just forget for a moment that you + know the candidate personally. After that, look unprejudiced on the + person's activity on the mailing lists, and evaluate the patches + submitted.

    + +

    Now, you can ask yourself, is it enough confidence in both technical + abilities and the social behavior of the candidate, from what you see + only on the media? If you do, then write down the reasons why are + you sure, using the said list of the contributions as the evidence, + and do include the reasoning in the commit bit application.

    + +

    Due to several failures of the premature granting of commit bits, the + Core Team became quite sensitive to these criteria. Most of the + members only see the activity of applicants on the lists, and not + seeing much there causes the cautious choice.

    + +

    The Core Team wants to see a good list of the work already done for + &os; (e.g., the long list of the commits, submitted by the applicant, + the list of PRs opened etc.), which can make us confident that the + person has an established interest in the project, backed by the + technical ability and work done.

    + +

    Also, the history of the good engagement with the community on the + public media, such as mailing list, is a deciding factor too. The + Core Team wants to filter out the controversial personalities, since + it is almost impossible and highly undesirable to revoke the commit + bit, once granted.

    + +

    Vendor-proposed maintainers for the hardware drivers usually approved + without applying the listed criteria. Still, the Core Team requires + an experienced mentor for a vendor committer to avoid unwanted tension + and to make sure that vendor commits follow the Project procedures and + community expectations.

    + + + From owner-svn-doc-all@FreeBSD.ORG Mon Mar 18 23:18:13 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3AD2EC2F; Mon, 18 Mar 2013 23:18:13 +0000 (UTC) (envelope-from rodrigc@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 16E97313; Mon, 18 Mar 2013 23:18:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2INIDtv036784; Mon, 18 Mar 2013 23:18:13 GMT (envelope-from rodrigc@svn.freebsd.org) Received: (from rodrigc@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2INIDj0036782; Mon, 18 Mar 2013 23:18:13 GMT (envelope-from rodrigc@svn.freebsd.org) Message-Id: <201303182318.r2INIDj0036782@svn.freebsd.org> From: Craig Rodrigues Date: Mon, 18 Mar 2013 23:18:13 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41264 - head/en_US.ISO8859-1/articles/releng X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 23:18:13 -0000 Author: rodrigc (src committer) Date: Mon Mar 18 23:18:12 2013 New Revision: 41264 URL: http://svnweb.freebsd.org/changeset/doc/41264 Log: Take an initial pass at updating the content in this document to more accurately reflect the current procedures of the FreeBSD Release Engineering team. Reviewed by: delphij nwhitehorn Modified: head/en_US.ISO8859-1/articles/releng/article.xml Modified: head/en_US.ISO8859-1/articles/releng/article.xml ============================================================================== --- head/en_US.ISO8859-1/articles/releng/article.xml Mon Mar 18 18:29:18 2013 (r41263) +++ head/en_US.ISO8859-1/articles/releng/article.xml Mon Mar 18 23:18:12 2013 (r41264) @@ -11,7 +11,9 @@ + November 11, 2001. --> + November 2001 BSDCon Europe @@ -74,8 +76,14 @@ The development of &os; is a very open process. &os; is comprised of contributions from thousands of people around the - world. The &os; Project provides anonymous - CVS[1] access to the general public so that + world. The &os; Project provides + Subversion + + + Subversion, + + + access to the general public so that others can have access to log messages, diffs (patches) between development branches, and other productivity enhancements that formal source code management provides. This has been a huge help @@ -83,9 +91,20 @@ think everyone would agree that chaos would soon manifest if write access was opened up to everyone on the Internet. Therefore only a select group of nearly 300 people are given write - access to the CVS repository. These - committers[5] are responsible for the bulk of - &os; development. An elected core-team[6] + access to the Subversion repository. These + committers + + + FreeBSD committers + + + are responsible for the bulk of &os; development. An elected + Core Team + + + &os; Core Team + + of very senior developers provides some level of direction over the project. @@ -94,16 +113,15 @@ for polishing the development system into a production quality release. To solve this dilemma, development continues on two parallel tracks. The main development branch is the - HEAD or trunk of our CVS + HEAD or trunk of our Subversion tree, known as &os;-CURRENT or -CURRENT for short. A more stable branch is maintained, known as &os;-STABLE or -STABLE for short. - Both branches live in a master CVS repository in California and - are replicated via CVSup[2] to mirrors all over the - world. &os;-CURRENT[7] is the bleeding-edge of + Both branches live in a master Subversion repository on a machine + maintained by the &os; Project. + &os;-CURRENT is the bleeding-edge of &os; development where all new changes first enter the system. &os;-STABLE is the development branch from which major releases are made. Changes go into this branch at a different pace, and @@ -117,52 +135,64 @@ class="resource">ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/. The widespread availability of binary release snapshots, and the tendency of our user community to keep up with -STABLE development - with CVSup and make - world[7] helps to keep + with Subversion and make + buildworld + + + Rebuilding "world" + + + helps to keep &os;-STABLE in a very reliable condition even before the quality assurance activities ramp up pending a major release. Bug reports and feature requests are continuously submitted by users throughout the release cycle. Problems reports are entered into our - GNATS[8] database + GNATS database + + + GNATS: The GNU Bug Tracking System + + + through email, the &man.send-pr.1; application, or via the web interface provided at . - + To service our most conservative users, individual release branches were introduced with &os; 4.3. These release branches are created shortly before a final release is made. After the release goes out, only the most critical security fixes and additions are merged onto the release branch. - In addition to source updates via CVS, binary patchkits are + In addition to source updates via Subversion, binary patchkits are available to keep systems on the RELENG_X_Y branches updated. - + What this article describes - + The following sections of this article describe: - + - + The different phases of the release engineering process leading up to the actual system build. - + - + The actual build process. - + @@ -170,7 +200,7 @@ How the base release may be extended by third parties. - + @@ -264,42 +294,38 @@ Creating the Release Branch - As described in the introduction, the - RELENG_X_Y - release branch is a relatively new addition to our release - engineering - methodology. The first step in creating this branch is to - ensure that you are working with the newest version of the - RELENG_X sources - that you want to branch from. - - /usr/src&prompt.root; cvs update -rRELENG_4 -P -d + + In all examples below, $FSVN + refers to the location of the &os; Subversion repository, + svn+ssh://svn.freebsd.org/base/. + - The next step is to create a branch point - tag, so that diffs against the start of - the branch are easier with CVS: + The layout of &os; branches in Subversion is + described in the Committer's Guide. + The first step in creating a branch is to + identify the revision of the + stable/X sources + that you want to branch from. - /usr/src&prompt.root; cvs rtag -rRELENG_4 RELENG_4_8_BP src + &prompt.root; svn log -v $FSVN/stable/9 - And then a new branch tag is created with: + The next step is to create the release branch + + + &prompt.root; svn cp $FSVN/stable/9@REVISION $FSVN/releng/9.2 - /usr/src&prompt.root; cvs rtag -b -rRELENG_4_8_BP RELENG_4_8 src + This branch can be checked out: + + &prompt.root; svn co $FSVN/releng/9.2 src - The - RELENG_* tags - are restricted for use by the CVS-meisters and release - engineers. + Creating releng branch and release + tags are restricted to + Subversion administrators + and the Release Engineering Team. + - - A tag is CVS - vernacular for a label that identifies the source at a specific point - in time. By tagging the tree, we ensure that future release builders - will always be able to use the same source we used to create the - official &os; Project releases. - - @@ -479,7 +505,14 @@ Sysinstall should be updated to note the number of available ports and the amount of disk space required - for the Ports Collection[4]. This information is currently kept in + for the Ports Collection. + + + &os; Ports Collection + + + + This information is currently kept in src/usr.sbin/sysinstall/dist.c. After the release has been built, a number of file should @@ -526,47 +559,29 @@ - - Preparing a new major release branch - (RELENG_<replaceable>X</replaceable>) - - When a new major release branch, such as - RELENG_6 is branched from HEAD, some - additional files must be updated before releases can be made - from this new branch. - - - - src/share/examples/cvsup/stable-supfile -- must be updated to point to the new -STABLE branch, when -applicable. - - - - - - Creating Release Tags + Creating the Release Tag When the final release is ready, the following command - will create the RELENG_4_8_0_RELEASE + will create the release/9.2.0 tag. - /usr/src&prompt.root; cvs rtag -rRELENG_4_8 RELENG_4_8_0_RELEASE src + &prompt.root; svn cp $FSVN/releng/9.2 $FSVN/release/9.2.0 The Documentation and Ports managers are responsible for - tagging the respective trees with the RELEASE_4_8_0 + tagging their respective trees with the tags/RELEASE_9_2_0 tag. - Occasionally, a last minute fix may be required - after the final tags have been created. - In practice this is not a problem, since CVS - allows tags to be manipulated with cvs - tag -d tagname filename. - It is very important that any last minute changes be tagged - appropriately as part of the release. &os; releases must - always be reproducible. Local hacks in the release - engineer's environment are not acceptable. + + When the Subversion svn cp command + is used to create a release tag, + this identifies the source at a specific point in time. + By creating tags, we ensure that future release builders + will always be able to use the exact same source we used to create the + official &os; Project releases. + + + @@ -577,79 +592,38 @@ applicable. &os; releases can be built by anyone with a fast machine and access to a source repository. (That should be - everyone, since we offer anonymous CVS! See The Handbook for + everyone, since we offer Subversion access ! + See the + Subversion section + in the Handbook for details.) The only special requirement is that the &man.md.4; device must be available. If the device is not loaded into your kernel, then the kernel module should be automatically loaded when &man.mdconfig.8; is executed during the boot media creation phase. All of the tools necessary - to build a release are available from the CVS repository in + to build a release are available from the Subversion repository in src/release. These tools aim to provide a consistent way to build &os; releases. A complete release can actually be built with only a single command, including the creation of ISO images suitable for burning to - CDROM, installation floppies, and an FTP install directory. This - command is aptly named make - release. + CDROM or DVD, and an FTP install directory. &man.release.7; fully + documents the src/release/generate-release.sh + script which is used to build a release. generate-release.sh + is a wrapper around the Makefile target: make release. - <command>make release</command> - - To successfully build a release, you must first populate - /usr/obj by running make - world or simply - make - buildworld. The release - target requires several variables be set properly to build a - release: + Building a Release - - - CHROOTDIR - The directory to be used as the - chroot environment for the entire release build. - - - - BUILDNAME - The name of the release to be - built. - - - - CVSROOT - The location of a CVS Repository. - - - - - RELEASETAG - The CVS tag corresponding to the - release you would like to build. - - - - If you do not already have access to a local CVS - repository, then you may mirror one with CVSup. - The supplied supfile, - /usr/share/examples/cvsup/cvs-supfile, is - a useful starting point for mirroring the CVS - repository. - - If RELEASETAG is omitted, then the - release will be built from the HEAD (aka -CURRENT) branch. - Releases built from this branch are normally referred to as - -CURRENT snapshots. - - There are many other variables available to customize the - release build. Most of these variables are documented at the - top of src/release/Makefile. The exact - command used to build the official &os; 4.7 (x86) release - was: - - make release CHROOTDIR=/local3/release \ - BUILDNAME=4.7-RELEASE \ - CVSROOT=/host/cvs/usr/home/ncvs \ - RELEASETAG=RELENG_4_7_0_RELEASE - - + &man.release.7; documents the exact commands required to + build a &os; release. The following sequences of commands can build + an 9.2.0 release: + + &prompt.root; cd /usr/src/release + &prompt.root; sh generate-release.sh release/9.2.0 /local3/release + + After running these commands, all prepared release + files are available in /local3/release/R + directory. The release Makefile can be broken down into several distinct steps. @@ -663,7 +637,7 @@ applicable. - Checkout from CVS of a clean version of the system source, + Checkout from Subversion of a clean version of the system source, documentation, and ports into the release build hierarchy. @@ -709,20 +683,11 @@ applicable. - Build of the crunched binaries used for - installation floppies. - - - Package up distribution tarballs of the binaries and sources. - Create the boot media and a fixit floppy. - - - Create FTP installation hierarchy. @@ -952,63 +917,19 @@ applicable. be expected to answer questions about it. - Creating Customized Boot floppies - - Many sites have complex requirements that may require - additional kernel modules or userland tools be added to the - installation floppies. The quick and dirty way - to accomplish this would be to modify the staging directory of - an existing make release build hierarchy: - - - - Apply patches or add additional files inside the chroot - release build directory. - - - - rm - ${CHROOTDIR}/usr/obj/usr/src/release/release.[59] - - - - rebuild &man.sysinstall.8;, the kernel, or whatever - parts of the system your change affected. - - - - chroot ${CHROOTDIR} ./mk floppies - - - - - - New release floppies will be located in - ${CHROOTDIR}/R/stage/floppies. - - Alternatively, the - boot.flp make - target can be called, or the filesystem - creating script, - src/release/scripts/doFS.sh, may be invoked - directly. - - Local patches may also be supplied to the release build by - defining the LOCAL_PATCH variable in make - release. - - - - Scripting <command>sysinstall</command> The &os; system installation and configuration tool, &man.sysinstall.8;, can be scripted to provide automated installs for large sites. This functionality can be used in conjunction - with &intel; PXE[12] to bootstrap systems from the network, or - via custom boot floppies with a sysinstall script. An example - sysinstall script is available in the CVS tree as - src/usr.sbin/sysinstall/install.cfg. + with &intel; PXE + + + + + + to bootstrap systems from the network. + @@ -1100,59 +1021,31 @@ applicable. community. I would also like to thank &a.rgrimes;, &a.phk;, and others who worked on the release engineering tools in the very early days of &os;. This article was influenced by release engineering - documents from the CSRG[13], the NetBSD Project[10], and John - Baldwin's proposed release engineering process notes[11]. - - - - - References - [1] CVS - Concurrent Versions System - - - [2] CVSup - The CVS-Optimized General Purpose Network File Distribution - System - - - [3] - - [4] &os; Ports Collection - - - [5] &os; Committers - - - [6] &os; Core Team - - - [7] &os; Handbook - - - - [8] GNATS: The GNU Bug Tracking System - - - - [9] &os; PR Statistics - - - [10] NetBSD Developer Documentation: Release Engineering - - - - [11] John Baldwin's &os; Release Engineering Proposal - - - - [12] PXE Jumpstart Guide - - - - [13] Marshall Kirk McKusick, Michael J. Karels, and Keith Bostic: - -The Release Engineering of 4.3BSD + documents from the CSRG + + + Marshall Kirk McKusick, Michael J. Karels, and Keith Bostic: + + The Release Engineering of 4.3BSD + + + , + the NetBSD Project , + + + NetBSD Developer Documentation: Release Engineering + + + + , and John + Baldwin's proposed release engineering process notes. + + + John Baldwin's &os; Release Engineering Proposal + + + + From owner-svn-doc-all@FreeBSD.ORG Tue Mar 19 14:35:21 2013 Return-Path: Delivered-To: svn-doc-all@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 44EE5E78; Tue, 19 Mar 2013 14:35:21 +0000 (UTC) (envelope-from ryusuke@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 17D58AB2; Tue, 19 Mar 2013 14:35:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JEZKAw019695; Tue, 19 Mar 2013 14:35:20 GMT (envelope-from ryusuke@svn.freebsd.org) Received: (from ryusuke@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2JEZKJY019694; Tue, 19 Mar 2013 14:35:20 GMT (envelope-from ryusuke@svn.freebsd.org) Message-Id: <201303191435.r2JEZKJY019694@svn.freebsd.org> From: Ryusuke SUZUKI Date: Tue, 19 Mar 2013 14:35:20 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41265 - head/ja_JP.eucJP/htdocs/developers X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Mar 2013 14:35:21 -0000 Author: ryusuke Date: Tue Mar 19 14:35:20 2013 New Revision: 41265 URL: http://svnweb.freebsd.org/changeset/doc/41265 Log: - Merge the following from the English version: r39747 -> r41253 head/ja_JP.eucJP/htdocs/developers/cvs.xml Modified: head/ja_JP.eucJP/htdocs/developers/cvs.xml Modified: head/ja_JP.eucJP/htdocs/developers/cvs.xml ============================================================================== --- head/ja_JP.eucJP/htdocs/developers/cvs.xml Mon Mar 18 23:18:12 2013 (r41264) +++ head/ja_JP.eucJP/htdocs/developers/cvs.xml Tue Mar 19 14:35:20 2013 (r41265) @@ -5,7 +5,7 @@ ]> - + @@ -24,12 +24,15 @@ ¥ê¥Ý¥¸¥È¥ê¤Ëµ­Ï¿¤µ¤ì¡¢ °Ê²¼¤Ç½Ò¤Ù¤ë¥¦¥§¥Ö¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ç´Êñ¤Ë¸«¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£

    -

    2008 ǯ 6 ·î¤è¤ê¡¢¥Ù¡¼¥¹¥·¥¹¥Æ¥à¤Î³«È¯¤Ï¡¢Ê̤ΥС¼¥¸¥ç¥ó´ÉÍý¥·¥¹¥Æ¥à¤«¤é +

    2008 ǯ 6 ·î¤è¤ê¡¢¥Ù¡¼¥¹¥·¥¹¥Æ¥à¤Î³«È¯¤Ï¡¢Ê̤ΥС¼¥¸¥ç¥ó´ÉÍý¥·¥¹¥Æ¥à Subversion (ά¤·¤Æ SVN) ¤Ë°Ü¹Ô¤·¤Þ¤·¤¿¡£ ¥¦¥§¥Ö¥¤¥ó¥¿¥Õ¥§¡¼¥¹ ¤òÍøÍѤ·¤Æ¥ê¥Ý¥¸¥È¥ê¤ò¸«¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£ - ¤¹¤Ù¤Æ¤ÎÊѹ¹ÅÀ¤Ï¡¢CVS ¥ê¥Ý¥¸¥È¥ê¤Ë¤âÈ¿±Ç¤µ¤ì¤Þ¤¹¡£

    + ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤ë¥Ö¥é¥ó¥Á (stable/9 ¤ª¤è¤Ó stable/8) + ¤Ø¤Î¤¹¤Ù¤Æ¤ÎÊѹ¹ÅÀ¤Ï¡¢CVS ¥ê¥Ý¥¸¥È¥ê¤Ë¤âÈ¿±Ç¤µ¤ì¤Þ¤¹¡£ + ¤¿¤À¤·¡¢CVS ¥ê¥Ý¥¸¥È¥ê¤Ï¿ä¾©¤µ¤ì¤Æ¤¤¤Ê¤¤¤Î¤Ç¡¢ + CVS ¤òÍøÍѤ·¤Æ¤¤¤ë¥æ¡¼¥¶¤Ï SVN ¤Ë°Ü¹Ô¤·¤Æ¤¯¤À¤µ¤¤¡£

    2012 ǯ 5 ·î¤è¤ê¡¢FreeBSD ¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¥×¥í¥¸¥§¥¯¥È¤Ï¡¢CVS ¤«¤é Subversion ¤Ø¤È°Ü¹Ô¤·¤Þ¤·¤¿¡£¥Ù¡¼¥¹¥·¥¹¥Æ¥à¤È¤Ï°Û¤Ê¤ê¡¢ @@ -42,15 +45,14 @@ Subversion ¤Ø¤È°Ü¹Ô¤·¤Þ¤·¤¿¡£¥¦¥§¥Ö¥¤¥ó¥¿¥Õ¥§¡¼¥¹ ¤òÍøÍѤ·¤Æ¥ê¥Ý¥¸¥È¥ê¤ÎÆâÍƤò¸«¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£ - Ports ¥Ä¥ê¡¼¤ÎÊѹ¹ÅÀ¤Ï¡¢CVS ¥ê¥Ý¥¸¥È¥ê¤Ë¤âÈ¿±Ç¤µ¤ì¤Þ¤¹¤¬¡¢ + Ports ¥Ä¥ê¡¼¤ÎÊѹ¹ÅÀ¤Ï¡¢¸µ¤Î CVS ¥ê¥Ý¥¸¥È¥ê¤Ë¤âÈ¿±Ç¤µ¤ì¤Þ¤¹¤¬¡¢ 2013 ǯ¤ÎÁ°È¾¤Ë¤Ï¹Ô¤ï¤ì¤Ê¤¯¤Ê¤ëͽÄê¤Ç¤¹¡£

    ¥ì¥¬¥·¡¼ : CVS

    -

    &os; ¥×¥í¥¸¥§¥¯¥È¤Ï¡¢¥½¡¼¥¹¤ò´ÉÍý¤¹¤ë¥Ä¡¼¥ë¤È¤·¤Æ - CVS - (Concurrent Version System) ¤ò»È¤Ã¤Æ¤¤¤Þ¤·¤¿¡£

    - +

    CVS (the + Concurrent Version System) ¤Ï¡¢&os; ¥×¥í¥¸¥§¥¯¥È¤¬¡¢ + ¥½¡¼¥¹¤ò´ÉÍý¤¹¤ë¤¿¤á¤Ë»È¤Ã¤Æ¤¤¤¿¥Ä¡¼¥ë¤Ç¤¹¡£

    ¸Å¤¤¥¦¥§¥Ö¤Î¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ï¡¢cvsweb ¥¤¥ó¥¹¥¿¥ó¥¹ From owner-svn-doc-all@FreeBSD.ORG Tue Mar 19 20:16:35 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A57779DD; Tue, 19 Mar 2013 20:16:35 +0000 (UTC) (envelope-from brooks@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 969A727B; Tue, 19 Mar 2013 20:16:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JKGZMD026416; Tue, 19 Mar 2013 20:16:35 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2JKGZW9026415; Tue, 19 Mar 2013 20:16:35 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201303192016.r2JKGZW9026415@svn.freebsd.org> From: Brooks Davis Date: Tue, 19 Mar 2013 20:16:35 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41266 - head/en_US.ISO8859-1/books/porters-handbook X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Mar 2013 20:16:35 -0000 Author: brooks (src,ports committer) Date: Tue Mar 19 20:16:35 2013 New Revision: 41266 URL: http://svnweb.freebsd.org/changeset/doc/41266 Log: s/requires requires/requires/ Submitted by: "N.J. Mann" Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.xml Tue Mar 19 14:35:20 2013 (r41265) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Tue Mar 19 20:16:35 2013 (r41266) @@ -15709,7 +15709,7 @@ Reference: <http://www.freebsd.org/po 901502 November 28, 2012 9.1-STABLE after USB serial jitter buffer requires - requires rebuild of USB serial device modules. + rebuild of USB serial device modules. From owner-svn-doc-all@FreeBSD.ORG Tue Mar 19 21:44:10 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7D19FD1E; Tue, 19 Mar 2013 21:44:10 +0000 (UTC) (envelope-from rene@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 6F7B88E2; Tue, 19 Mar 2013 21:44:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JLiASv054734; Tue, 19 Mar 2013 21:44:10 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2JLiALw054732; Tue, 19 Mar 2013 21:44:10 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201303192144.r2JLiALw054732@svn.freebsd.org> From: Rene Ladan Date: Tue, 19 Mar 2013 21:44:10 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41267 - head/nl_NL.ISO8859-1/htdocs X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Mar 2013 21:44:10 -0000 Author: rene Date: Tue Mar 19 21:44:09 2013 New Revision: 41267 URL: http://svnweb.freebsd.org/changeset/doc/41267 Log: MFen the Dutch website: - administration.xml r41094 -> r41185 - where.xml r40536 -> r41232 Modified: head/nl_NL.ISO8859-1/htdocs/administration.xml head/nl_NL.ISO8859-1/htdocs/where.xml Modified: head/nl_NL.ISO8859-1/htdocs/administration.xml ============================================================================== --- head/nl_NL.ISO8859-1/htdocs/administration.xml Tue Mar 19 20:16:35 2013 (r41266) +++ head/nl_NL.ISO8859-1/htdocs/administration.xml Tue Mar 19 21:44:09 2013 (r41267) @@ -6,7 +6,7 @@ @@ -126,8 +126,8 @@

  • &a.tabthorpe; <tabthorpe@FreeBSD.org>
  • &a.marcus; <marcus@FreeBSD.org>
  • &a.bapt; <bapt@FreeBSD.org>
  • +
  • &a.bdrewery; <bdrewery@FreeBSD.org>
  • &a.decke; <decke@FreeBSD.org>
  • -
  • &a.beat; <beat@FreeBSD.org>
  • &a.erwin; <erwin@FreeBSD.org>
  • &a.itetcu; <itetcu@FreeBSD.org>
  • &a.miwi; <miwi@FreeBSD.org>
  • Modified: head/nl_NL.ISO8859-1/htdocs/where.xml ============================================================================== --- head/nl_NL.ISO8859-1/htdocs/where.xml Tue Mar 19 20:16:35 2013 (r41266) +++ head/nl_NL.ISO8859-1/htdocs/where.xml Tue Mar 19 21:44:09 2013 (r41267) @@ -6,7 +6,7 @@ ]> @@ -144,6 +144,7 @@ [Distributie] [ISO] + + [Distributie] [ISO] i386 - + [Distributie] [ISO] pc98 - + [Distributie] [ISO] sparc64 - + [Distributie] [ISO] + --> From owner-svn-doc-all@FreeBSD.ORG Tue Mar 19 22:44:50 2013 Return-Path: Delivered-To: svn-doc-all@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 E9688CA3; Tue, 19 Mar 2013 22:44:50 +0000 (UTC) (envelope-from rene@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 CDD5FB06; Tue, 19 Mar 2013 22:44:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JMio3G073225; Tue, 19 Mar 2013 22:44:50 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2JMimTE073212; Tue, 19 Mar 2013 22:44:48 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201303192244.r2JMimTE073212@svn.freebsd.org> From: Rene Ladan Date: Tue, 19 Mar 2013 22:44:48 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41268 - in head/nl_NL.ISO8859-1/books/handbook: . advanced-networking audit dtrace eresources jails multimedia ppp-and-slip printing security x11 X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Mar 2013 22:44:51 -0000 Author: rene Date: Tue Mar 19 22:44:48 2013 New Revision: 41268 URL: http://svnweb.freebsd.org/changeset/doc/41268 Log: MFen the Dutch Handbook: - advanced-networking r40833 -> r41177 - audit r40792 -> r41181 - book.xml r40585 -> r40979 - dtrace r40686 -> r40876 - eresources r40690 -> r41167 - jails r40792 -> r40900 - multimedia r40792 -> r41064 - ppp-and-slip r40792 -> r41154 - printing r40759 -> r41064 - security r40792 -> r41064 - x11 r40566 -> r41025 Modified: head/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.xml head/nl_NL.ISO8859-1/books/handbook/audit/chapter.xml head/nl_NL.ISO8859-1/books/handbook/book.xml head/nl_NL.ISO8859-1/books/handbook/dtrace/chapter.xml head/nl_NL.ISO8859-1/books/handbook/eresources/chapter.xml head/nl_NL.ISO8859-1/books/handbook/jails/chapter.xml head/nl_NL.ISO8859-1/books/handbook/multimedia/chapter.xml head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/chapter.xml head/nl_NL.ISO8859-1/books/handbook/printing/chapter.xml head/nl_NL.ISO8859-1/books/handbook/security/chapter.xml head/nl_NL.ISO8859-1/books/handbook/x11/chapter.xml Modified: head/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -5,7 +5,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml - %SRCID% 40833 + %SRCID% 41177 --> @@ -924,23 +924,6 @@ route_net2="-net 192.168.1.0/24 192.168. linkend="config-network-ndis">NDIS. - Nadat het apparaatstuurprogramma is ingesteld onder &os; 7.X - is het ook nodig om de ondersteuning voor 802.11-netwerken waarvan het - stuurprogramma gebruik maakt in te stellen. Voor het - stuurprogramma &man.ath.4; zijn dit minimaal de modules - &man.wlan.4;, wlan_scan_ap en - wlan_scan_sta; de module &man.wlan.4; wordt - automatisch geladen met het stuurprogramma voor draadloze - apparaten, de overige modules dienen tijdens het opstarten - geladen te worden in /boot/loader.conf: - - wlan_scan_ap_load="YES" -wlan_scan_sta_load="YES" - - Sinds &os; 8.0 zijn deze modules deel van het - basisstuurprogramma &man.wlan.4; dat dynamisch met het stuurprogramma - voor de adapter wordt geladen. - Daarvoor zijn ook de modules nodig die cryptografische ondersteuning implementeren voor de te gebruiken veiligheidsprotocollen. Het is de bedoeling dat ze dynamisch @@ -983,13 +966,6 @@ device ath_hal # Ondersteuning voor PC options AH_SUPPORT_AR5146 # zet AR5146 tx/rx descriptors aan device ath_rate_sample # SampleRate verzendsnelheid-controle voor ath - Beide van de volgende regels zijn nodig voor - &os; 7.X, voor andere versies van &os; zijn ze niet - nodig: - - device wlan_scan_ap # 802.11 AP mode scanning -device wlan_scan_sta # 802.11 STA mode scanning - Met deze informatie in het kernelinstellingenbestand kan de kernel opnieuw gecompileerd en de &os;-computer opnieuw opgestart worden. @@ -1040,20 +1016,6 @@ freebsdap 00:11:95:c3:0d:ac 1 5 niet nodig om de interface als up te markeren. - - In &os; 7.X wordt de apparaat-adapter, bijvoorbeeld - ath0, - direct gebruikt in plaats van het apparaat - wlan. Hierom is het nodig om beide - vorige regels te vervangen door: - - &prompt.root; ifconfig ath0 up scan - - In de rest van dit document dienen gebruikers van - &os; 7.X de opdracht- en instellingregels volgens dat schema - aan te passen. - - De uitvoer van een scanverzoek vermeld elk gevonden BSS/IBSS-netwerk. Naast de naam van het netwerk, SSID, staat het BSSID, @@ -1165,13 +1127,6 @@ freebsdap 00:11:95:c3:0d:ac 1 5 wlans_ath0="wlan0" ifconfig_wlan0="DHCP" - - Zoals eerder vermeld, is voor &os; 7.X alleen een - regel nodig voor de apparaat-adapter: - - ifconfig_ath0="DHCP" - - Indien er meerdere toegangspunten zijn en het gewenst is om een specifieke te kiezen, kan dit met het SSID: @@ -1401,7 +1356,7 @@ ifconfig_wlan0="WPA DHCP"Hierna kan de interface geactiveerd worden: - &prompt.root; service netif start + &prompt.root; service netif start Starting wpa_supplicant. DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5 DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6 @@ -2322,7 +2277,8 @@ freebsdap 00:11:95:c3:0d:ac 1 Het is mogelijk om debugberichten in de laag die het 802.11 protocol ondersteunt aan te zetten door het programma wlandebug te gebruiken dat gevonden wordt - in /usr/src/tools/tools/net80211. + in /usr/src/tools/tools/net80211. Bijvoorbeeld: &prompt.root; wlandebug -i ath0 +scan+auth+debug+assoc @@ -2932,8 +2888,8 @@ Success, response: OK, Success (0x20)Om de dienst OBEX Object Push aan te bieden, moet de server &man.sdpd.8; draaien. Er moet een hoofdmap worden aangemaakt waarin alle binnenkomende objecten worden opgeslagen. Het - standaardpad naar de hoofdmap is - /var/spool/obex. Tenslotte moet de + standaardpad naar de hoofdmap is /var/spool/obex. Tenslotte moet de OBEX-server op een geldig RFCOMM-kanaal worden gestart. De OBEX-server zal automatisch de dienst OBEX Object Push bij de plaatselijke SDP-daemon registeren. Het onderstaande voorbeeld @@ -3905,8 +3861,8 @@ ifconfig_lagg0 - Er bestaan standaardbestanden voor het opstarten van het - systeem in /etc om een systeemstart + Er bestaan standaardbestanden voor het opstarten van het systeem + in /etc om een systeemstart zonder schijf te detecteren en te ondersteunen. @@ -3927,10 +3883,10 @@ ifconfig_lagg0 - De schijfloze werkstations gebruiken een gedeeld - bestandssysteem voor /, dat alleen - gelezen kan worden, en een gedeeld bestandssysteem voor - /usr, dat eveneens alleen gelezen kan + De schijfloze werkstations gebruiken een gedeeld bestandssysteem + voor /, dat alleen + gelezen kan worden, en een gedeeld bestandssysteem voor /usr, dat eveneens alleen gelezen kan worden. Het root-bestandssysteem is een kopie van een standaard @@ -4260,8 +4216,8 @@ margaux:ha=0123456789ab:tc=.def100Om een opstartdiskette te maken, dient er een diskette in het diskettestation van de machine aanwezig te zijn waarop - Etherboot is geïnstalleerd, - daarna dient er naar de map src in de + Etherboot is geïnstalleerd, daarna dient + er naar de map src in de mapboom van Etherboot gegaan te worden, en het volgende ingetypt te worden: @@ -4324,9 +4280,9 @@ margaux:ha=0123456789ab:tc=.def100 - Maak een map aan van waaruit - tftpd de bestanden serveert, - bijvoorbeeld /tftpboot. + Maak een map aan van waaruit tftpd + de bestanden serveert, bijvoorbeeld /tftpboot. @@ -4356,8 +4312,8 @@ margaux:ha=0123456789ab:tc=.def100 - De map tftpboot kan overal op de - server geplaatst worden. De plaats dient zowel in + De map tftpboot kan overal + op de server geplaatst worden. De plaats dient zowel in inetd.conf als in dhcpd.conf ingesteld te worden. @@ -4531,7 +4487,7 @@ cd /usr/src/etc; make distribution Draaien met een alleen-lezen - <filename>/usr</filename> + /usr schijfloos werken @@ -4542,7 +4498,7 @@ cd /usr/src/etc; make distributionIndien het schijfloze werkstation is ingesteld om X te draaien, is het nodig om het instellingenbestand van XDM te wijzigen, dat standaard - het foutenlogboek in /usr + het foutenlogboek in /usr plaatst. @@ -4556,8 +4512,8 @@ cd /usr/src/etc; make distributiontar of cpio. In deze situatie zijn er af en toe problemen met de - speciale bestanden in /dev, vanwege - verschillen in de groottes van grote/kleine integers. Een + speciale bestanden in /dev, + vanwege verschillen in de groottes van grote/kleine integers. Een oplossing voor dit probleem is om een map van de niet-&os;-server te exporteren, deze map op een &os;-machine aan te koppelen, en &man.devfs.5; te gebruiken om de @@ -4615,8 +4571,8 @@ cd /usr/src/etc; make distribution Kies een map uit voor een installatie van &os; die over NFS - aangekoppeld kan worden. Bijvoorbeeld een map als - /b/tftpboot/FreeBSD/install. + aangekoppeld kan worden. Bijvoorbeeld een map als /b/tftpboot/FreeBSD/install. &prompt.root; export NFSROOTDIR=/b/tftpboot/FreeBSD/install &prompt.root; mkdir -p ${NFSROOTDIR} @@ -4740,7 +4696,8 @@ mijnhost.example.com:/b/tftpboot/FreeBSD /etc/rc dat u over NFS opstartte en draait het het script /etc/rc.initdiskless. Lees het commentaar in dit script om te begrijpen wat er gebeurt. Het is nodig om - /etc en /var geheugen-backed + /etc en /var geheugen-backed te maken omdat deze mappen schrijfbaar moeten zijn, maar de NFS-rootmap is alleen-lezen. @@ -4750,10 +4707,10 @@ mijnhost.example.com:/b/tftpboot/FreeBSD &prompt.root; tar -c -v -f conf/base/var.cpio.gz --format cpio --gzip var Wanneer het systeem opstart, zullen er geheugen-bestandssystemen - voor /etc en /var worden - aangemaakt en aangekoppeld, en zal de inhoud van de - cpio.gz-bestanden er naartoe worden - gekopieerd. + voor /etc en /var worden aangemaakt en aangekoppeld, + en zal de inhoud van de cpio.gz-bestanden er + naartoe worden gekopieerd.
    Modified: head/nl_NL.ISO8859-1/books/handbook/audit/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/audit/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/audit/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/audit/chapter.xml - %SRCID% 40792 + %SRCID% 41181 --> systeem te genereren, trail bestands data kan erg groot worden wanneer er erg precieze details worden gevraagd, wat enkele gigabytes per week kan behalen in sommige configuraties. - Beheerders moeten rekening houden met voldoende schijfruimte - voor grote audit configuraties. Bijvoorbeeld het kan gewenst - zijn om eigen bestandsysteem aan /var/audit + Beheerders moeten rekening houden met voldoende schijfruimte voor + grote audit configuraties. Bijvoorbeeld het kan gewenst zijn om eigen + bestandsysteem aan /var/audit toe te wijzen zo dat andere bestandssystemen geen hinder ondervinden als het audit bestandssysteem onverhoopt vol raakt. @@ -662,8 +662,8 @@ trailer,133 Leden van de audit groep krijgen permissie om de audit trails te lezen in - /var/audit; standaard is deze groep leeg en - kan alleen de root gebruiker deze + /var/audit; standaard is deze + groep leeg en kan alleen de root gebruiker deze audit trails lezen. Gebruikers kunnen toegevoegd worden aan de audit groep zodat onderzoek rechten kunnen worden gedelegeerd aan de geruiker. Omdat de mogelijkheid van Modified: head/nl_NL.ISO8859-1/books/handbook/book.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/book.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/book.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -8,7 +8,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/book.xml - %SRCID% 40585 + %SRCID% 40979 --> @@ -103,7 +103,6 @@ &tm-attrib.adaptec; &tm-attrib.adobe; &tm-attrib.apple; - &tm-attrib.corel; &tm-attrib.creative; &tm-attrib.cvsup; &tm-attrib.heidelberger; Modified: head/nl_NL.ISO8859-1/books/handbook/dtrace/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/dtrace/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/dtrace/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -12,7 +12,7 @@ that might make this chapter too large. $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/dtrace/chapter.xml - %SRCID% 40686 + %SRCID% 40876 --> @@ -404,7 +404,7 @@ Elapsed Times for processes csh, genoemd door de documentatie van &sun;, en lijkt sterk op C++. Een diepgaande discussie over de taal valt buiten het bereik van dit document. Het wordt uitgebreid behandeld op . + url="http://wikis.oracle.com/display/DTrace/Documentation">. Modified: head/nl_NL.ISO8859-1/books/handbook/eresources/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/eresources/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/eresources/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -6,7 +6,7 @@ Vertaald door: Siebrand Mazeland / Rene Ladan %SOURCE% en_US.ISO8859-1/books/handbook/eresources/chapter.xml - %SRCID% 40690 + %SRCID% 41167 --> @@ -106,7 +106,8 @@ &a.announce.name; - Belangrijke gebeurtenissen en projectdoelen + Belangrijke gebeurtenissen en projectdoelen + (gemodereerd) @@ -171,7 +172,7 @@ &a.security-notifications.name; - Beveiligingswaarschuwingen + Beveiligingswaarschuwingen (gemodereerd) @@ -229,7 +230,7 @@ &a.amd64.name; - Porten van &os; naar AMD64-systemen + Porten van &os; naar AMD64-systemen (gemodereerd) @@ -523,7 +524,7 @@ &a.ports-announce.name; Belangrijk nieuws en belangrijke instructies over de - Portscollectie + Portscollectie (gemodereerd) @@ -727,13 +728,6 @@ - &a.vendors.name; - - Coördinatie van vooruitgaven met - wederverkopers - - - &a.wip-status.name; &os; Werk-In-Uitvoering status @@ -745,13 +739,6 @@ Discussies over de ontwikkeling van de 802.11-stack, gereedschappen en stuurprogramma's. - - - &a.www.name; - - Beheerders van www.FreeBSD.org - @@ -1671,8 +1658,8 @@ zijn in veranderingen en zaken die te maken hebben met de infrastructuur van het FreeBSD.org project. - Deze lijst is strict voor aankondigingen: geen antwoorden, - verzoeken, discussies of meningen. + Deze gemodereerde lijst is strict voor aankondigingen: geen + antwoorden, verzoeken, discussies of meningen. @@ -2006,17 +1993,6 @@ - &a.vendors.name; - - - Verkopers - - Coördinatie en discussie tussen het &os;-project - en verkopers van software en hardware voor &os;. - - - - &a.virtualization.name; Modified: head/nl_NL.ISO8859-1/books/handbook/jails/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/jails/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/jails/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -5,7 +5,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/jails/chapter.xml - %SRCID% 40792 + %SRCID% 40900 --> @@ -594,7 +594,8 @@ jail_www_devf Deze opstelling vereist uitgebreide kennis en ervaring van &os; en zijn mogelijkheden. Als onderstaande stappen te lastig lijken te zijn, wordt aangeraden om een simpeler - systeem te bekijken zoals + systeem te bekijken zoals sysutils/qjail of sysutils/ezjail, welke een simpele manier geeft voor het beheren van &os; jails en niet zo complex is als deze opstelling. Modified: head/nl_NL.ISO8859-1/books/handbook/multimedia/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/multimedia/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/multimedia/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -5,7 +5,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/multimedia/chapter.xml - %SRCID% 40792 + %SRCID% 41064 --> @@ -1779,9 +1779,7 @@ bktr0: Pinnacle/Miro TV, Philips SECAM t SANE heeft een lijst met ondersteunde apparaten waarin gekeken kan worden of een scanner - wordt ondersteund en wat de status voor ondersteuning is. Op systemen - van vóór &os; 8.X staat in de handleidingpagina van - &man.uscanner.4; een lijst met ondersteunde USB-scanners. + wordt ondersteund en wat de status voor ondersteuning is. @@ -1808,15 +1806,6 @@ device ohci device uscanner device ehci - Op systemen van vóór &os; 8.X is de volgende - regel ook nodig: - - device uscanner - - Op deze versies van &os; biedt het apparaat &man.uscanner.4; - ondersteuning voor de USB-scanners. Sinds &os; 8.0 ondersteunt - de bibliotheek &man.libusb.3; dit direct. - Na een herstart met de juiste kernel kan de USB-scanner aangesloten worden. Een regel die de detectie van uw scanner aangeeft zou in de berichtenbuffer van het systeem @@ -1824,15 +1813,9 @@ device ehci ugen0.2: <EPSON> at usbus0 - Of op een &os; 7.X systeem: - - uscanner0: EPSON EPSON Scanner, rev 1.10/3.02, addr 2 - - Deze berichten geven aan dat de scanner òfwel - /dev/ugen0.2 òf - /dev/uscanner0 als apparaatknooppunt - gebruikt afhankelijk van de versie van &os; die we draaien. Voor dit - voorbeeld was een &epson.perfection; 1650 USB-scanner + Deze berichten geven aan dat de scanner + /dev/ugen0.2 als apparaatknooppunt gebruikt. + Voor dit voorbeeld was een &epson.perfection; 1650 USB-scanner gebruikt. @@ -2082,22 +2065,6 @@ device `epson:/dev/uscanner0' is a Epson add path ugen0.2 mode 0660 group usb add path usb/0.2.0 mode 0666 group usb - Gebruikers van &os; 7.X hebben waarschijnlijk de volgende - regels met het juiste apparaatknooppunt, - /dev/uscanner0, nodig: - - [system=5] -add path uscanner0 mode 0660 group usb - - Daarna kan de volgende regel aan - /etc/rc.conf toegevoegd worden en dient - een machine herstart te worden: - - devfs_system_ruleset="system" - - Meer informatie over de bovenstaande instellingen staan in - de hulppagina voor &man.devfs.8;. - Nu dienen er alleen nog gebruikers aan de groep usb toegevoegd te worden om toegang tot de scanner toe te staan: Modified: head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -5,7 +5,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.xml - %SRCID% 40792 + %SRCID% 41154 --> @@ -155,17 +155,6 @@ Gebruikmaken van gebruiker-PPP - - Met ingang van &os; 8.0 zijn apparaatknooppunten voor - seriële poorten hernoemd van - /dev/cuadN naar - /dev/cuauN en van - /dev/ttydN naar - /dev/ttyuN. - Gebruikers van &os; 7.X dienen de volgende documentatie met deze - wijzigingen te lezen. - - Gebruiker-PPP @@ -1971,18 +1960,6 @@ exit 1 troubleshooten - - Met ingang van &os; 8.0 vervangt het stuurprogramma - &man.uart.4; het stuurprogramma &man.sio.4;. Apparaatknooppunten voor - seriële poorten zijn hernoemd van - /dev/cuadN naar - /dev/cuauN en van - /dev/ttydN naar - /dev/ttyuN. - Gebruikers van &os; 7.X zullen de documentatie met deze - veranderingen moeten lezen. - - Deze sectie behandelt een paar problemen die kunnen optreden wanneer PPP wordt gebruikt over een modemverbinding. Bijvoorbeeld, misschien moet u exact weten wat de prompt is Modified: head/nl_NL.ISO8859-1/books/handbook/printing/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/printing/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/printing/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -5,7 +5,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/printing/chapter.xml - %SRCID% 40750 + %SRCID% 41064 --> @@ -192,12 +192,8 @@ Waarom het wachtrijsysteem gebruikt zou moeten worden - Als er maar één gebruiker is op een systeem, - staat terecht ter discussie waarom het wachtrijsysteem nodig is - als toegangscontrole, voorbladen en printerstatistieken niet - nodig zijn. Hoewel directe toegang tot de printer is in te - stellen, is het raadzaam het wachtrijsysteem toch te - gebruiken, omdat: + Het wachtrijsysteem biedt nog steeds voordelen op een systeem met + een enkele gebruiker en dient gebruikt te worden omdat: @@ -232,15 +228,6 @@ Standaardinstallatie - - Vanaf &os; 8.0; zijn de apparaatknooppunten - voor seriële poorten hernoemd van - /dev/ttydN naar - /dev/ttyuN. - &os; 7.X gebruikers moeten de volgende documentatie aanpassen - naar aanleiding van deze wijzigingen. - - Om printers met het LPD wachtrijsysteem te kunnen gebruiken, dienen zowel de printerhardware als de LPD software @@ -1546,15 +1533,6 @@ $%&'()*+,-./01234567 Geavanceerde printerinstallatie - - Vanaf &os; 8.0; zijn de apparaatknooppunten - voor seriële poorten hernoemd van - /dev/ttydN naar - /dev/ttyuN. - &os; 7.X gebruikers moeten de volgende documentatie aanpassen - naar aanleiding van deze wijzigingen. - - Deze sectie behandelt het gebruik van filters om speciaal opgemaakte tekst en voorbladen af te drukken, via het netwerk af te drukken en printergebruik te beperken en statistieken bij te Modified: head/nl_NL.ISO8859-1/books/handbook/security/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/security/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/security/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -5,7 +5,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/security/chapter.xml - %SRCID% 40792 + %SRCID% 41064 --> @@ -695,9 +695,7 @@ wordt toegang tot rauwe apparaten ontzegd. Hogere niveaus beperken nog meer bewerkingen. Lees, voor een volledige beschrijving van het effect van de verschillende - veiligheidsniveaus, de handleidingpagina &man.security.7; (of de - handleidingpagina van &man.init.8; voor uitgaven ouder dan &os; - 7.0). + veiligheidsniveaus, de handleidingpagina &man.security.7;. Het ophogen van het veiligheidsniveau naar 1 of hoger kan Modified: head/nl_NL.ISO8859-1/books/handbook/x11/chapter.xml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/x11/chapter.xml Tue Mar 19 21:44:09 2013 (r41267) +++ head/nl_NL.ISO8859-1/books/handbook/x11/chapter.xml Tue Mar 19 22:44:48 2013 (r41268) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/x11/chapter.xml - %SRCID% 40566 + %SRCID% 41025 --> @@ -47,8 +47,7 @@ De standaard en officiele smaak van X11 in &os; is &xorg;, de X11-server die is ontwikkeld door de X.Org Foundation onder een licentie die - veel lijkt op degene die door &os; wordt gebruikt. Er zijn ook - commerciële X-servers voor &os; beschikbaar. + veel lijkt op degene die door &os; wordt gebruikt. Meer informatie over de videohardware die X11 ondersteunt kan gevonden worden op de tablet kan als invoerapparaat worden gebruikt, en een videoprojector kan een alternatief uitvoerapparaat zijn). - Iedere X applicatie (zoals XTerm, of - &netscape;) is een + Iedere X applicatie (zoals XTerm of + Firefox) is een cliënt. Een cliënt stuurt berichten naar de server zoals teken een venster op deze coördinaten en de server stuurt berichten terug @@ -188,15 +187,8 @@ In plaats daarvan delegeert X deze verantwoordelijkheid aan een applicatie die Window Manager heet. Er zijn - tientallen window managers voor X: - AfterStep, - Blackbox, - ctwm, - Enlightenment, - fvwm, - Sawfish, - twm, - Window Maker en vele anderen. Elk + tientallen window managers + beschikbaar voor X. Elk van deze window managers heeft een eigen voorkomen en werking. Er zijn window managers met virtual desktops of met eigen toetscombinaties om de desktop te beheren; of hebben @@ -310,15 +302,7 @@ stijl of widgets te verplichten. X applicaties hebben dus niet allemaal hetzelfde uiterlijk. - Er zijn populaire widgetsets en variaties, inclusief de - originele Athena widgetset van MIT, - &motif; (waarvan de widgetset van - µsoft.windows; is afgeleid: schuine randen en drie - gradaties grijs), OpenLook en - anderen. - - De meeste nieuwe X applicaties gebruiken een modern - uitziende widgetset: Qt, gebruikt door + Er zijn populaire widgetsets en variaties, inclusief Qt, gebruikt door KDE, of GTK+ van het GNOME project. Vanuit dit oogpunt lijkt het enigszins op de &unix; desktop, wat het makkelijker @@ -329,8 +313,8 @@ X11 installeren - &xorg; is de standaard X11 - implementatie voor &os;. &xorg; is + &xorg; is de X11-implementatie voor + &os;. &xorg; is de X11 server van de open source implementatie die is uitgebracht door de X.Org Foundation. &xorg; is gebaseerd op de code van From owner-svn-doc-all@FreeBSD.ORG Wed Mar 20 08:37:36 2013 Return-Path: Delivered-To: svn-doc-all@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 AA4C11EC; Wed, 20 Mar 2013 08:37:36 +0000 (UTC) (envelope-from gavin@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 87F9C601; Wed, 20 Mar 2013 08:37:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K8bakV053703; Wed, 20 Mar 2013 08:37:36 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2K8baQG053702; Wed, 20 Mar 2013 08:37:36 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201303200837.r2K8baQG053702@svn.freebsd.org> From: Gavin Atkinson Date: Wed, 20 Mar 2013 08:37:36 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41269 - head/en_US.ISO8859-1/htdocs X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 08:37:36 -0000 Author: gavin Date: Wed Mar 20 08:37:36 2013 New Revision: 41269 URL: http://svnweb.freebsd.org/changeset/doc/41269 Log: Mention x86-64 and x64 as alternative platform names for amd64 on the download links page. Modified: head/en_US.ISO8859-1/htdocs/where.xml Modified: head/en_US.ISO8859-1/htdocs/where.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/where.xml Tue Mar 19 22:44:48 2013 (r41268) +++ head/en_US.ISO8859-1/htdocs/where.xml Wed Mar 20 08:37:36 2013 (r41269) @@ -77,7 +77,7 @@ - amd64 + amd64
    (x86-64, x64) [Distribution] [ISO] @@ -123,7 +123,7 @@ - amd64 + amd64
    (x86-64, x64) [Distribution] [ISO] @@ -156,7 +156,7 @@ - amd64 + amd64
    (x86-64, x64) [Distribution] [ISO] From owner-svn-doc-all@FreeBSD.ORG Wed Mar 20 09:55:18 2013 Return-Path: Delivered-To: svn-doc-all@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 8B780B73; Wed, 20 Mar 2013 09:55:18 +0000 (UTC) (envelope-from rene@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 7DE07AFA; Wed, 20 Mar 2013 09:55:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K9tIFB077774; Wed, 20 Mar 2013 09:55:18 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2K9tIQC077773; Wed, 20 Mar 2013 09:55:18 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201303200955.r2K9tIQC077773@svn.freebsd.org> From: Rene Ladan Date: Wed, 20 Mar 2013 09:55:18 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41270 - head/nl_NL.ISO8859-1/htdocs X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 09:55:18 -0000 Author: rene Date: Wed Mar 20 09:55:17 2013 New Revision: 41270 URL: http://svnweb.freebsd.org/changeset/doc/41270 Log: MFen r41232 -> r41269 Modified: head/nl_NL.ISO8859-1/htdocs/where.xml Modified: head/nl_NL.ISO8859-1/htdocs/where.xml ============================================================================== --- head/nl_NL.ISO8859-1/htdocs/where.xml Wed Mar 20 08:37:36 2013 (r41269) +++ head/nl_NL.ISO8859-1/htdocs/where.xml Wed Mar 20 09:55:17 2013 (r41270) @@ -6,7 +6,7 @@ ]> @@ -76,7 +76,7 @@ - amd64 + amd64
    (x86-64, x64) [Distributie] [ISO] @@ -122,7 +122,7 @@ - amd64 + amd64
    (x86-64, x64) [Distributie] [ISO] @@ -155,7 +155,7 @@ - amd64 + amd64
    (x86-64, x64) [Distributie] [ISO] From owner-svn-doc-all@FreeBSD.ORG Wed Mar 20 13:10:12 2013 Return-Path: Delivered-To: svn-doc-all@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 2145EC5D; Wed, 20 Mar 2013 13:10:12 +0000 (UTC) (envelope-from ryusuke@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 141A6791; Wed, 20 Mar 2013 13:10:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2KDABlo036394; Wed, 20 Mar 2013 13:10:11 GMT (envelope-from ryusuke@svn.freebsd.org) Received: (from ryusuke@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2KDABZT036393; Wed, 20 Mar 2013 13:10:11 GMT (envelope-from ryusuke@svn.freebsd.org) Message-Id: <201303201310.r2KDABZT036393@svn.freebsd.org> From: Ryusuke SUZUKI Date: Wed, 20 Mar 2013 13:10:11 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41271 - head/ja_JP.eucJP/htdocs X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 13:10:12 -0000 Author: ryusuke Date: Wed Mar 20 13:10:11 2013 New Revision: 41271 URL: http://svnweb.freebsd.org/changeset/doc/41271 Log: - Merge the following from the English version: r41232 -> r41269 head/ja_JP.eucJP/htdocs/where.xml Modified: head/ja_JP.eucJP/htdocs/where.xml Modified: head/ja_JP.eucJP/htdocs/where.xml ============================================================================== --- head/ja_JP.eucJP/htdocs/where.xml Wed Mar 20 09:55:17 2013 (r41270) +++ head/ja_JP.eucJP/htdocs/where.xml Wed Mar 20 13:10:11 2013 (r41271) @@ -5,7 +5,7 @@ ]> - + @@ -76,7 +76,7 @@ - amd64 + amd64
    (x86-64, x64) [ÇÛÉÛ¸µ] [ISO] @@ -122,7 +122,7 @@ - amd64 + amd64
    (x86-64, x64) [ÇÛÉÛ¸µ] [ISO] @@ -155,7 +155,7 @@ - amd64 + amd64
    (x86-64, x64) [ÇÛÉÛ¸µ] [ISO] From owner-svn-doc-all@FreeBSD.ORG Wed Mar 20 17:57:05 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E5A5ACA7; Wed, 20 Mar 2013 17:57:05 +0000 (UTC) (envelope-from eadler@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 CDB72951; Wed, 20 Mar 2013 17:57:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2KHv5LY025183; Wed, 20 Mar 2013 17:57:05 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2KHv5Wk025182; Wed, 20 Mar 2013 17:57:05 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201303201757.r2KHv5Wk025182@svn.freebsd.org> From: Eitan Adler Date: Wed, 20 Mar 2013 17:57:05 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41272 - head/en_US.ISO8859-1/books/faq X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 17:57:06 -0000 Author: eadler Date: Wed Mar 20 17:57:05 2013 New Revision: 41272 URL: http://svnweb.freebsd.org/changeset/doc/41272 Log: This paragraph is not correct about 8.x. Comment it out until a general answer to the question of "when are branches end-of-lifed" is written and reviewed. Reported by: gavin Approved by: jkois (mentor) Modified: head/en_US.ISO8859-1/books/faq/book.xml Modified: head/en_US.ISO8859-1/books/faq/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/faq/book.xml Wed Mar 20 13:10:11 2013 (r41271) +++ head/en_US.ISO8859-1/books/faq/book.xml Wed Mar 20 17:57:05 2013 (r41272) @@ -337,10 +337,10 @@ &rel2.relx;. branch will be designated for an extended support status and receive only fixes for major problems, such as security-related fixes. - There will be no more releases made from the +
    Version &rel.current; From owner-svn-doc-all@FreeBSD.ORG Wed Mar 20 18:04:33 2013 Return-Path: Delivered-To: svn-doc-all@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 182DC284; Wed, 20 Mar 2013 18:04:33 +0000 (UTC) (envelope-from eadler@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 0AEA1A15; Wed, 20 Mar 2013 18:04:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2KI4W40027987; Wed, 20 Mar 2013 18:04:32 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2KI4W3t027984; Wed, 20 Mar 2013 18:04:32 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201303201804.r2KI4W3t027984@svn.freebsd.org> From: Eitan Adler Date: Wed, 20 Mar 2013 18:04:32 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41273 - head/en_US.ISO8859-1/books/faq X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 18:04:33 -0000 Author: eadler Date: Wed Mar 20 18:04:32 2013 New Revision: 41273 URL: http://svnweb.freebsd.org/changeset/doc/41273 Log: Update error text in the archsw-readin-failed-error question. Noted by: Lowell Gilbert PR: docs/177036 Submitted by: freebsd-bugs-local@be-well.ilk.org Approved by: jkois (mentor) Modified: head/en_US.ISO8859-1/books/faq/book.xml Modified: head/en_US.ISO8859-1/books/faq/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/faq/book.xml Wed Mar 20 17:57:05 2013 (r41272) +++ head/en_US.ISO8859-1/books/faq/book.xml Wed Mar 20 18:04:32 2013 (r41273) @@ -1503,7 +1503,7 @@ Why do I get an error message, - archsw.readin.failed after compiling + readin failed after compiling and booting a new kernel? From owner-svn-doc-all@FreeBSD.ORG Wed Mar 20 22:54:47 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6E2D3331; Wed, 20 Mar 2013 22:54:47 +0000 (UTC) (envelope-from pawel@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 6000C9A0; Wed, 20 Mar 2013 22:54:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2KMslfW017629; Wed, 20 Mar 2013 22:54:47 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2KMslE3017628; Wed, 20 Mar 2013 22:54:47 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201303202254.r2KMslE3017628@svn.freebsd.org> From: Pawel Pekala Date: Wed, 20 Mar 2013 22:54:47 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41275 - head/en_US.ISO8859-1/articles/contributors X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 22:54:47 -0000 Author: pawel (ports committer) Date: Wed Mar 20 22:54:46 2013 New Revision: 41275 URL: http://svnweb.freebsd.org/changeset/doc/41275 Log: For multimedia/libsmacker PR: ports/176822 Modified: head/en_US.ISO8859-1/articles/contributors/contrib.additional.xml Modified: head/en_US.ISO8859-1/articles/contributors/contrib.additional.xml ============================================================================== --- head/en_US.ISO8859-1/articles/contributors/contrib.additional.xml Wed Mar 20 21:05:33 2013 (r41274) +++ head/en_US.ISO8859-1/articles/contributors/contrib.additional.xml Wed Mar 20 22:54:46 2013 (r41275) @@ -3575,6 +3575,11 @@ + Greg Kennedy + kennedy.greg@gmail.com + + + Greg Robinson greg@rosevale.com.au From owner-svn-doc-all@FreeBSD.ORG Wed Mar 20 23:53:00 2013 Return-Path: Delivered-To: svn-doc-all@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 9515ECBC; Wed, 20 Mar 2013 23:53:00 +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 7831AB54; Wed, 20 Mar 2013 23:53:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2KNr0FO035472; Wed, 20 Mar 2013 23:53:00 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2KNr0cf035470; Wed, 20 Mar 2013 23:53:00 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201303202353.r2KNr0cf035470@svn.freebsd.org> From: Glen Barber Date: Wed, 20 Mar 2013 23:53:00 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41276 - in head: en_US.ISO8859-1/share/xml share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 23:53:00 -0000 Author: gjb Date: Wed Mar 20 23:52:59 2013 New Revision: 41276 URL: http://svnweb.freebsd.org/changeset/doc/41276 Log: Prepare where.html for 8.4-BETA1. beta.testing entity is still disabled. Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent head/share/xml/release.ent Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent ============================================================================== --- head/en_US.ISO8859-1/share/xml/release.l10n.ent Wed Mar 20 22:54:46 2013 (r41275) +++ head/en_US.ISO8859-1/share/xml/release.l10n.ent Wed Mar 20 23:52:59 2013 (r41276) @@ -98,26 +98,32 @@ amd64 - [Distribution] - [ISO] + [Distribution] + [ISO] i386 - [Distribution] - [ISO] + [Distribution] + [ISO] + + + + pc98 + [Distribution] + [ISO] sparc64 - [Distribution] - [ISO] + [Distribution] + [ISO] powerpc64 - [Distribution] - [ISO] + [Distribution] + [ISO] Modified: head/share/xml/release.ent ============================================================================== --- head/share/xml/release.ent Wed Mar 20 22:54:46 2013 (r41275) +++ head/share/xml/release.ent Wed Mar 20 23:52:59 2013 (r41276) @@ -31,8 +31,8 @@ - - + + @@ -4622,7 +4622,7 @@ Please press any key to reboot. Ä̾¤³¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤Ï°Ê²¼¤Î¥¤¥á¡¼¥¸¤¬ÃÖ¤¤¤Æ¤¢¤ê¤Þ¤¹¡£ - &os; 8.<replaceable>X</replaceable> + <title>&os; ISO ¥¤¥á¡¼¥¸¤Î̾Á°¤ÈÆâÍÆ @@ -4677,7 +4677,7 @@ Please press any key to reboot. ¤³¤Î CD ¥¤¥á¡¼¥¸¤Ë¤Ï¡¢¥Ç¥£¥¹¥¯¤Ë¼ý¤Þ¤ëÍÆÎ̤Υµ¡¼¥É¥Ñ¡¼¥Æ¥£À½ package ¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤Î¥¤¥á¡¼¥¸¤Ï¡¢ - &os; 8.X + &os; 9.X °Ê¹ß¤Ç¤ÏÍøÍѤǤ­¤Þ¤»¤ó¡£ @@ -4686,15 +4686,7 @@ Please press any key to reboot. ¥Ç¥£¥¹¥¯¤Ë¼ý¤Þ¤ëÍÆÎ̤Υµ¡¼¥É¥Ñ¡¼¥Æ¥£À½ package ¤ò´Þ¤à¤â¤¦ 1 ¤Ä¤Î CD ¥¤¥á¡¼¥¸¤Ç¤¹¡£¤³¤Î¥¤¥á¡¼¥¸¤Ï¡¢ - &os; 8.X - °Ê¹ß¤Ç¤ÏÍøÍѤǤ­¤Þ¤»¤ó¡£ - - - - &os;-version-RELEASE-arch-docs.iso - - &os; ¥É¥­¥å¥á¥ó¥È¡£¤³¤Î¥¤¥á¡¼¥¸¤Ï¡¢ - &os; 8.X + &os; 9.X °Ê¹ß¤Ç¤ÏÍøÍѤǤ­¤Þ¤»¤ó¡£ Modified: head/ja_JP.eucJP/books/handbook/ports/chapter.xml ============================================================================== --- head/ja_JP.eucJP/books/handbook/ports/chapter.xml Thu Mar 21 12:57:17 2013 (r41281) +++ head/ja_JP.eucJP/books/handbook/ports/chapter.xml Thu Mar 21 13:39:12 2013 (r41282) @@ -3,7 +3,7 @@ The FreeBSD Documentation Project The FreeBSD Japanese Documentation Project - Original revision: r41119 + Original revision: r41281 $FreeBSD$ --> @@ -983,8 +983,7 @@ Deinstalling ca_root_nss-3.13.5... done< (¤¹¤Ê¤ï¤Á¡¢¥í¡¼¥«¥ë¤ÇÄɲäΥѥåÁ¤ò¥á¥ó¥Æ¥Ê¥ó¥¹¤·¤¿¤¤) ¤È¹Í¤¨¤Æ¤¤¤ë¥æ¡¼¥¶¤Ï¡¢Ä¾ÀÜ Subversion ¤ò»È¤¦¤È¤è¤¤¤Ç¤·¤ç¤¦¡£ CVSup ¤Î¥µ¡¼¥Ó¥¹¤Ï¡¢ - 2013 ǯ 2 ·î 28 Æü¤Þ¤Ç¤ËÃʳ¬Åª¤ËÇѻߤµ¤ì¤ë¤Î¤Ç¡¢ - º£¸å CVSup ¤ÎÍøÍѤò¿Ê¤á¤ë¤³¤È¤Ï¡¢¿ä¾©¤µ¤ì¤Þ¤»¤ó¡£ + 2013 ǯ 2 ·î 28 Æü¤ËÇѻߤµ¤ì¤Þ¤·¤¿¡£ @@ -1467,8 +1466,9 @@ Deinstalling ca_root_nss-3.13.5... done< Ê̤Υ«¥Æ¥´¥ê¤Î ports ¤Î distfiles ¤Ï¥À¥¦¥ó¥í¡¼¥É¤µ¤ì¤Ê¤¤¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£ port ¤¬°Í¸¤·¤Æ¤¤¤ë¤¹¤Ù¤Æ¤ò¥À¥¦¥ó¥í¡¼¥É¤·¤¿¤±¤ì¤Ð¡¢ - makefetch-recursive - fetch ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤¡£ + make + fetch-recursive + ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤¡£ ¥È¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤Ç make From owner-svn-doc-all@FreeBSD.ORG Thu Mar 21 14:16:20 2013 Return-Path: Delivered-To: svn-doc-all@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 AB7043BD; Thu, 21 Mar 2013 14:16:20 +0000 (UTC) (envelope-from eadler@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 9DA1BD18; Thu, 21 Mar 2013 14:16:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2LEGK07001182; Thu, 21 Mar 2013 14:16:20 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2LEGKU0001181; Thu, 21 Mar 2013 14:16:20 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201303211416.r2LEGKU0001181@svn.freebsd.org> From: Eitan Adler Date: Thu, 21 Mar 2013 14:16:20 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41283 - head/en_US.ISO8859-1/books/porters-handbook X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 14:16:20 -0000 Author: eadler Date: Thu Mar 21 14:16:20 2013 New Revision: 41283 URL: http://svnweb.freebsd.org/changeset/doc/41283 Log: Document new USES feature "zenoss" PR: docs/177131 Submitted by: jgh Approved by: bcr (mentor) Modified: head/en_US.ISO8859-1/books/porters-handbook/uses.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/uses.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/uses.xml Thu Mar 21 13:39:12 2013 (r41282) +++ head/en_US.ISO8859-1/books/porters-handbook/uses.xml Thu Mar 21 14:16:20 2013 (r41283) @@ -59,3 +59,12 @@ implies both run-time and build-time dependencies. vars will only set QMAIL variables for the port to use. + + + zenoss + none + Implies the port uses net-mgmt/zenoss in one way or another, but + largely is used for building zenoss related zenpack ports. + + From owner-svn-doc-all@FreeBSD.ORG Thu Mar 21 16:48:45 2013 Return-Path: Delivered-To: svn-doc-all@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 A9D2FC1F; Thu, 21 Mar 2013 16:48:45 +0000 (UTC) (envelope-from ryusuke@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 9BA33AD8; Thu, 21 Mar 2013 16:48:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2LGmjmo047528; Thu, 21 Mar 2013 16:48:45 GMT (envelope-from ryusuke@svn.freebsd.org) Received: (from ryusuke@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2LGmjb7047526; Thu, 21 Mar 2013 16:48:45 GMT (envelope-from ryusuke@svn.freebsd.org) Message-Id: <201303211648.r2LGmjb7047526@svn.freebsd.org> From: Ryusuke SUZUKI Date: Thu, 21 Mar 2013 16:48:45 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41284 - head/ja_JP.eucJP/htdocs/projects X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 16:48:45 -0000 Author: ryusuke Date: Thu Mar 21 16:48:44 2013 New Revision: 41284 URL: http://svnweb.freebsd.org/changeset/doc/41284 Log: - Merge the following from the English version: r40761 -> r41092 head/ja_JP.eucJP/htdocs/projects/newbies.xml Modified: head/ja_JP.eucJP/htdocs/projects/newbies.xml Modified: head/ja_JP.eucJP/htdocs/projects/newbies.xml ============================================================================== --- head/ja_JP.eucJP/htdocs/projects/newbies.xml Thu Mar 21 14:16:20 2013 (r41283) +++ head/ja_JP.eucJP/htdocs/projects/newbies.xml Thu Mar 21 16:48:44 2013 (r41284) @@ -6,7 +6,7 @@ ]> - + @@ -94,17 +94,6 @@ ppp ¥Ú¡¼¥¸ ¤Ø¹Ô¤¯¤Î¤¬¤è¤¤¤Ç¤·¤ç¤¦¡£

    -
  • Greg Lehey ¤Ë¤è¤ë - - The Complete &os; ¤¬ O'Reilly - ¤«¤é½ÐÈǤµ¤ì¤Æ¤¤¤Þ¤¹¡£ - ¤³¤ÎËܤϺǾ®¸Â¤Î UNIX ¤Ë´Ø¤¹¤ë·Ð¸³¤òÁ°Äó¤È¤·¤Æ¡¢ - &os; ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤«¤éÀßÄê¡¢ - ±¿ÍѤ¹¤ë¤¿¤á¤Ë½é¿´¼Ô¤¬ÃΤꤿ¤¤¤È»×¤¦¤¹¤Ù¤Æ¤Î¤³¤È¤¬¤é¤Þ¤Ç¤Î - ³ÆÃʳ¬¤Ë¤Ä¤¤¤Æ¡¢°ìÃʤº¤ÄÀâÌÀ¤·¤Æ¤¤¤Þ¤¹¡£ - ¤³¤ÎËܤòÆɤá¤Ð¡¢¤Ê¤Ë¤ò¹Ô¤Ê¤¦¤Î¤«¡¢¤Ê¤¼¤½¤ì¤ò¹Ô¤Ê¤¦¤Î¤«¤È¤¤¤¦¤³¤È¤â - Íý²ò¤Ç¤­¤Þ¤¹¡£

  • -
  • &os; ¥Ï¥ó¥É¥Ö¥Ã¥¯ ¤È ¤è¤¯¤¢¤ë¼ÁÌä¤ÈÅú¤¨ (FAQ) ¤Ï &os; ¤Ë´Ø¤¹¤ëÃ濴Ū¤Êʸ½ñ¤Ç¤¹¡£ @@ -126,9 +115,13 @@

  • &os; ¤Ë´Ø¤¹¤ë¼ç¤Ê¥Ë¥å¡¼¥¹¥°¥ë¡¼¥×¤Ï comp.unix.bsd.freebsd.misc ¤Ç¤¹¡£ - ¤Þ¤¿¡¢ - comp.unix.bsd.freebsd.announce - ¤Ë¤âÌܤòÄ̤·¤Æ¤ª¤¤¤¿Êý¤¬¤è¤¤¤«¤â¤·¤ì¤Þ¤»¤ó¡£

  • + UNIX ¤Ë´Ø¤¹¤ë¼ÁÌä¤Ï¥Ë¥å¡¼¥¹¥°¥ë¡¼¥× + comp.unix.questions + ¤ÇµÄÏÀ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£ + ¤½¤ì¤È´ØÏ¢¤·¤¿ + FAQ + ¤Î¥³¥Ô¡¼¤ò RMIT ¤Î FTP ¥µ¥¤¥È¤«¤éÆþ¼ê¤¹¤ë¤³¤È¤â²Äǽ¤Ç¤¹¡£ + ½é¿´¼Ô¤Ï¤Ï¤¸¤á¤ËÂè 1 ¾Ï¤ÈÂè 2 ¾Ï¤Ë¤â¤Ã¤È¤â¶½Ì£¤ò»ý¤Ä¤Ç¤·¤ç¤¦¡£

  • ¥ª¥ó¥é¥¤¥ó¥Þ¥Ë¥å¥¢¥ë (ÆüËܸìÈÇ) @@ -183,14 +176,6 @@ ¼«Ê¬¤ËÍý²ò¤Ç¤­¤ë¸ÀÍդǽñ¤¤¤Æ¤¢¤ë¤â¤Î¤òÁª¤Ö¤È¤è¤¤¤Ç¤·¤ç¤¦¡£ ¤¹¤°¤Ë¤â¤Ã¤È¹­¤¤ÈϰϤˤĤ¤¤Æ½ñ¤¤¤Æ¤¢¤ëËܤØÆɤ߿ʤߤ¿¤¯¤Ê¤ë¤«¤â¤·¤ì¤Þ¤»¤ó¤¬¡£

  • -
  • ½é¿´¼Ô¤¬¤·¤Ð¤·¤Ð̾Á°¤òµó¤²¤ëËܤΰì¤Ä¤Ë¡¢Addison-Wesley - ¤«¤é½ÐÈǤµ¤ì¤Æ¤¤¤ë¡¢Paul W. Abrahams ¤È Bruce R. Larson ¤Ë¤è¤ë - UNIX for the Impatient - ¤È¤¤¤¦¤â¤Î¤¬¤¢¤ê¤Þ¤¹¡£ - ¤³¤ÎËÜ¤Ï UNIX ¤Î³Ø½¬½ñ¡¢»²¹Í½ñ¤Ç¤¢¤ê¡¢ - UNIX ¤Î³µÇ°¤Ë¤Ä¤¤¤Æ¤ÎÀâÌÀ¤â¤¢¤ê¡¢¤µ¤é¤Ë X Window System - ¤ò»È¤¦¤Î¤ËÊØÍø¤Ê¾Ï¤â´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£

  • -
  • ¤â¤¦¤Ò¤È¤Äͭ̾¤Ê¤Î¤Ï Jerry Peek¡¢Tim O'Reilly ¤È Mike Loukides ¤Ë¤è¤ë UNIX Power Tools ¤È¤¤¤¦Ëܤǡ¢ ¤³¤ì¤Ï O'Reilly and Associates ¤«¤é½ÐÈǤµ¤ì¤Æ¤¤¤Þ¤¹¡£ @@ -217,29 +202,11 @@ ¶áÎ٤Υߥ顼¥µ¥¤¥È¤«¤é¼ê¤ËÆþ¤ì¤¿¤ê¡¢ ¼«Ê¬¤Î¥·¥¹¥Æ¥à¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤·¤¿¤ê¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£

  • -
  • UNIX ¤Ë´Ø¤¹¤ë¼ÁÌä¤Ï¥Ë¥å¡¼¥¹¥°¥ë¡¼¥× - comp.unix.questions - ¤ÇµÄÏÀ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£ - ¤½¤ì¤È´ØÏ¢¤·¤¿ - FAQ - ¤Î¥³¥Ô¡¼¤ò RMIT ¤Î FTP ¥µ¥¤¥È¤«¤éÆþ¼ê¤¹¤ë¤³¤È¤â²Äǽ¤Ç¤¹¡£ - ½é¿´¼Ô¤Ï¤Ï¤¸¤á¤ËÂè 1 ¾Ï¤ÈÂè 2 ¾Ï¤Ë¤â¤Ã¤È¤â¶½Ì£¤ò»ý¤Ä¤Ç¤·¤ç¤¦¡£

  • - -
  • ¤â¤¦¤Ò¤È¤Ä¤Î¶½Ì£¿¼¤¤¥Ë¥å¡¼¥¹¥°¥ë¡¼¥×¤Ï - comp.unix.user-friendly - ¤Ç¤¹¡£ - ¤³¤Î¥Ë¥å¡¼¥¹¥°¥ë¡¼¥×¤Ï¥æ¡¼¥¶¿ÆÏÂÀ­¤Ë¤Ä¤¤¤ÆµÄÏÀ¤¹¤ë¤¿¤á¤Î¤â¤Î¤Ç¤¹¤¬¡¢ - ½é¿´¼Ô¤Ë¤È¤Ã¤ÆÌò¤ËΩ¤Ä¾ðÊó¤¬Åê¹Æ¤µ¤ì¤ë¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£ - ¤³¤Î - FAQ - ¤Ï FTP ¤Ç¤âÆþ¼ê²Äǽ¤Ç¤¹¡£

  • -
  • ¾¤Ë¤â¤¿¤¯¤µ¤ó¤Î¥¦¥§¥Ö¥µ¥¤¥È¤Ë UNIX ¤Ë¤Ä¤¤¤Æ¤Î¥Á¥å¡¼¥È¥ê¥¢¥ë¤ä»²¹Í¤Ë¤Ç¤­¤ëʸ½ñ¤¬¤¢¤ê¤Þ¤¹¡£ - ¤½¤ì¤é¤ò¸«¤Æ²ó¤ë¤Î¤ËºÇŬ¤Ê½ÐȯÅÀ¤Î¤Ò¤È¤Ä¤Ï - Yahoo! - ¤Î UNIX ¥Ú¡¼¥¸¤Ç¤¹¡£

  • - + ¤½¤ì¤é¤ò¸«¤Æ²ó¤ë¤Î¤ËºÇŬ¤Ê½ÐȯÅÀ¤Î¤Ò¤È¤Ä¤Ï¡¢¥µ¡¼¥Á¥¨¥ó¥¸¥ó¤Î Google ¤Ç¤¹¡£

    +

    X Window System ¤Ë¤Ä¤¤¤Æ³Ø¤Ö

    @@ -252,15 +219,6 @@ ½é¿´¼Ô¤¬Íý²ò¤¹¤ë¤Ë¤Ï¾¯¤·Æñ¤·¤¤¤È¤¤¤¦¤³¤È¤Ëµ¤¤òÉÕ¤±¤Æ²¼¤µ¤¤¡£

      -
    • X Window System ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤äÀßÄê¡¢ - ±¿ÍѤˤĤ¤¤Æ¤Î´ðËÜŪ¤Ê¾ðÊó¤Ë¤Ä¤¤¤Æ¤Ï¡¢ - °Ê²¼¤Î 3 ºý¤ÎËܤÎÃæ¤Ë½é¿´¼Ô¥ì¥Ù¥ë¤Îµ­½Ò¤¬¤¢¤ê¤Þ¤¹¡£ - &os; ¥Ï¥ó¥É¥Ö¥Ã¥¯¤Î - - X Window System ¤Î¾Ï¡¢ - The Complete &os;, - UNIX for the Impatient¡£

    • -
    • X ¤ò¹¥¤­¤Ê¤è¤¦¤ËÆ°ºî¤µ¤»¤ë¤³¤È¤¬²Äǽ¤Ë¤Ê¤ëÁ°¤Ë¡¢ ¥¦¥£¥ó¥É¥¦¥Þ¥Í¡¼¥¸¥ã¤òÁª¤ÖɬÍפ¬¤¢¤ë¤Ç¤·¤ç¤¦¡£ Window Managers for X From owner-svn-doc-all@FreeBSD.ORG Thu Mar 21 19:14:24 2013 Return-Path: Delivered-To: svn-doc-all@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 786A0BF4; Thu, 21 Mar 2013 19:14:24 +0000 (UTC) (envelope-from gavin@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 6AF0862B; Thu, 21 Mar 2013 19:14:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2LJEOrX093487; Thu, 21 Mar 2013 19:14:24 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2LJEOZx093486; Thu, 21 Mar 2013 19:14:24 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201303211914.r2LJEOZx093486@svn.freebsd.org> From: Gavin Atkinson Date: Thu, 21 Mar 2013 19:14:24 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41285 - head/en_US.ISO8859-1/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 19:14:24 -0000 Author: gavin Date: Thu Mar 21 19:14:23 2013 New Revision: 41285 URL: http://svnweb.freebsd.org/changeset/doc/41285 Log: Mention x86-64 and x64 as alternative names for amd64. Note that these entities are only used by the htdocs build, so I am committing this even during the doc slush. Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent ============================================================================== --- head/en_US.ISO8859-1/share/xml/release.l10n.ent Thu Mar 21 16:48:44 2013 (r41284) +++ head/en_US.ISO8859-1/share/xml/release.l10n.ent Thu Mar 21 19:14:23 2013 (r41285) @@ -27,7 +27,7 @@

    - + @@ -97,7 +97,7 @@ - + From owner-svn-doc-all@FreeBSD.ORG Thu Mar 21 21:36:15 2013 Return-Path: Delivered-To: svn-doc-all@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 3245235D for ; Thu, 21 Mar 2013 21:36:15 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pb0-f53.google.com (mail-pb0-f53.google.com [209.85.160.53]) by mx1.freebsd.org (Postfix) with ESMTP id 0B5BAC3E for ; Thu, 21 Mar 2013 21:36:14 +0000 (UTC) Received: by mail-pb0-f53.google.com with SMTP id un1so2533659pbc.26 for ; Thu, 21 Mar 2013 14:36:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=x-received:mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=OQO33tCd5t4Y1XsrdtMR+Yu4DHgDbYVNzfyTcgksVw0=; b=WOQNofpJ9rMQD0S3UxItHbIsVNOt7k50iScB+pHlhG9XT9BFQHQqojZ1d91WQNzkgg Q/a6ZWQLdxABDua88287m0FiITVpsgOSVLfZJlfWjTjDyWj6d8BjWNpwGjAnJQzybZnd z0HkHsZ7eeCZ8VleEKImRxgIN60vUmC1VrUQM= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=OQO33tCd5t4Y1XsrdtMR+Yu4DHgDbYVNzfyTcgksVw0=; b=jnOF1W+uhhLnn8zh4UvZMUEqnOQxoAKGFgrLxJq0xrZWlfw3+EWYoBPfmIzF1v6EmK Wfo8rMQXvNyY/mdaQxLuWyjdLQkhKh2WEqbFh48BsVXAkod68EFZN5Ad61zmzCI5+Jg2 U5WhQBAUBhm1iR4CsDWpnEHBZdw8wsAtMFx6cIvPiAY1dFJPOj31wefgMcKP2hh3ETf9 RDpbVZ6zL7KsuqGATjCPCmAO5C/zPoudXx6yKzUPJB51bCBuu1z1M7mDxFQcjXTH+nwg pXu1TVbWaZqaHo3hRXmb9WgB2MuC8FSYHvMrvQVY1OCg9KCQSSTAgk7dzCF3091y6VRs t/Ug== X-Received: by 10.68.195.70 with SMTP id ic6mr16814321pbc.60.1363901317467; Thu, 21 Mar 2013 14:28:37 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.222.40 with HTTP; Thu, 21 Mar 2013 14:28:07 -0700 (PDT) In-Reply-To: <201303211914.r2LJEOZx093486@svn.freebsd.org> References: <201303211914.r2LJEOZx093486@svn.freebsd.org> From: Eitan Adler Date: Thu, 21 Mar 2013 17:28:07 -0400 X-Google-Sender-Auth: iC1kuHd6ZCQAylJRLMwFR3XmtfI Message-ID: Subject: Re: svn commit: r41285 - head/en_US.ISO8859-1/share/xml To: Gavin Atkinson Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQlb3WFabKiQJbbQIMNaGVomfa1caZmAzEMpuYBTQw5Vr19quyam3NY96ckAcCOG4b4KkkuO Cc: svn-doc-head@freebsd.org, svn-doc-all@freebsd.org, doc-committers@freebsd.org X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 21:36:15 -0000 On 21 March 2013 15:14, Gavin Atkinson wrote: > Author: gavin > Date: Thu Mar 21 19:14:23 2013 > New Revision: 41285 > URL: http://svnweb.freebsd.org/changeset/doc/41285 > > Log: > Mention x86-64 and x64 as alternative names for amd64. > Note that these entities are only used by the htdocs build, so I am > committing this even during the doc slush. Thanks for doing this. Hopefully this will clear up a lot of user confusion. -- Eitan Adler Source, Ports, Doc committer Bugmeister, Ports Security teams From owner-svn-doc-all@FreeBSD.ORG Fri Mar 22 04:16:16 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A07CFEDD; Fri, 22 Mar 2013 04:16:16 +0000 (UTC) (envelope-from danfe@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 7B293EB7; Fri, 22 Mar 2013 04:16:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2M4GGZn059948; Fri, 22 Mar 2013 04:16:16 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2M4GGXg059947; Fri, 22 Mar 2013 04:16:16 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201303220416.r2M4GGXg059947@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 22 Mar 2013 04:16:16 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41286 - head/en_US.ISO8859-1/books/porters-handbook X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Mar 2013 04:16:16 -0000 Author: danfe (ports committer) Date: Fri Mar 22 04:16:15 2013 New Revision: 41286 URL: http://svnweb.freebsd.org/changeset/doc/41286 Log: Improve examples of COPYTREE_SHARE usage: prefer dot (.) to \* since using characters subject to shell expansion is potentially unsafe (even with proper escaping, which tend to break if this construct will be evaluated twice, for example). Dot also looks more neat. While here, remove two misusages of trailing slashes. Approved by: gjb Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.xml Thu Mar 21 19:14:23 2013 (r41285) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Fri Mar 22 04:16:15 2013 (r41286) @@ -4887,7 +4887,7 @@ PORTVERSION= 1.0 post-install: ${MKDIR} ${EXAMPLESDIR} - (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) + (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) This example will install the contents of examples directory in the vendor @@ -4896,7 +4896,7 @@ PORTVERSION= 1.0 post-install: ${MKDIR} ${DATADIR}/summer - (cd ${WRKSRC}/temperatures/ && ${COPYTREE_SHARE} "June July August" ${DATADIR}/summer/) + (cd ${WRKSRC}/temperatures/ && ${COPYTREE_SHARE} "June July August" ${DATADIR}/summer) And this example will install the data of summer months to the summer subdirectory of a @@ -4911,7 +4911,7 @@ PORTVERSION= 1.0 post-install: ${MKDIR} ${EXAMPLESDIR} (cd ${WRKSRC}/examples/ && \ - ${COPYTREE_SHARE} \* ${EXAMPLESDIR} "! -name Makefile") + ${COPYTREE_SHARE} . ${EXAMPLESDIR} "! -name Makefile") Note that these macros does not add the installed files to pkg-plist. You still need to list @@ -16051,7 +16051,7 @@ Reference: <http://www.freebsd.org/po LOCALBASE The base of the local tree (e.g., - /usr/local/) + /usr/local) From owner-svn-doc-all@FreeBSD.ORG Fri Mar 22 05:23:44 2013 Return-Path: Delivered-To: svn-doc-all@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 21C59B21; Fri, 22 Mar 2013 05:23:44 +0000 (UTC) (envelope-from taras@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 152401DE; Fri, 22 Mar 2013 05:23:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2M5NhUk080368; Fri, 22 Mar 2013 05:23:43 GMT (envelope-from taras@svn.freebsd.org) Received: (from taras@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2M5NhxC080367; Fri, 22 Mar 2013 05:23:43 GMT (envelope-from taras@svn.freebsd.org) Message-Id: <201303220523.r2M5NhxC080367@svn.freebsd.org> From: Taras Korenko Date: Fri, 22 Mar 2013 05:23:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41287 - head/en_US.ISO8859-1/books/handbook/ports X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Mar 2013 05:23:44 -0000 Author: taras Date: Fri Mar 22 05:23:43 2013 New Revision: 41287 URL: http://svnweb.freebsd.org/changeset/doc/41287 Log: + fixed 1 whitespace and 2 typos Approved by: gjb@ Modified: head/en_US.ISO8859-1/books/handbook/ports/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/ports/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/ports/chapter.xml Fri Mar 22 04:16:15 2013 (r41286) +++ head/en_US.ISO8859-1/books/handbook/ports/chapter.xml Fri Mar 22 05:23:43 2013 (r41287) @@ -204,7 +204,7 @@ related to the application or install ports-mgmt/portaudit. Once installed, type portaudit -F -a to check - all installed applications for known vulnerabilities + all installed applications for known vulnerabilities. The remainder of this chapter explains how to use packages @@ -279,7 +279,7 @@ lsof: /usr/ports/sysutils/lsof search name=program-name where program-name is the name of - the software. For example,to search for + the software. For example, to search for lsof: &prompt.root; cd /usr/ports @@ -1784,9 +1784,7 @@ ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/ ports-mgmt/pkg_cutleaves automates the task of removing installed ports that are no longer - needed. - - port. + needed. From owner-svn-doc-all@FreeBSD.ORG Fri Mar 22 06:44:08 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0B568B4F; Fri, 22 Mar 2013 06:44:08 +0000 (UTC) (envelope-from danfe@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 F21AC6B6; Fri, 22 Mar 2013 06:44:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2M6i7wt004405; Fri, 22 Mar 2013 06:44:07 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2M6i7QH004404; Fri, 22 Mar 2013 06:44:07 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201303220644.r2M6i7QH004404@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 22 Mar 2013 06:44:07 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41288 - head/en_US.ISO8859-1/books/porters-handbook X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Mar 2013 06:44:08 -0000 Author: danfe (ports committer) Date: Fri Mar 22 06:44:07 2013 New Revision: 41288 URL: http://svnweb.freebsd.org/changeset/doc/41288 Log: Fix three more bogus usages of trailing slashes. Approved by: gjb (implicit, should be part of r41286) Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.xml Fri Mar 22 05:23:43 2013 (r41287) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Fri Mar 22 06:44:07 2013 (r41288) @@ -4887,7 +4887,7 @@ PORTVERSION= 1.0 post-install: ${MKDIR} ${EXAMPLESDIR} - (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) + (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) This example will install the contents of examples directory in the vendor @@ -4896,7 +4896,7 @@ PORTVERSION= 1.0 post-install: ${MKDIR} ${DATADIR}/summer - (cd ${WRKSRC}/temperatures/ && ${COPYTREE_SHARE} "June July August" ${DATADIR}/summer) + (cd ${WRKSRC}/temperatures && ${COPYTREE_SHARE} "June July August" ${DATADIR}/summer) And this example will install the data of summer months to the summer subdirectory of a @@ -4910,7 +4910,7 @@ PORTVERSION= 1.0 post-install: ${MKDIR} ${EXAMPLESDIR} - (cd ${WRKSRC}/examples/ && \ + (cd ${WRKSRC}/examples && \ ${COPYTREE_SHARE} . ${EXAMPLESDIR} "! -name Makefile") Note that these macros does not add the installed files From owner-svn-doc-all@FreeBSD.ORG Fri Mar 22 19:45:42 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0E11741E; Fri, 22 Mar 2013 19:45:42 +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 0064DFA2; Fri, 22 Mar 2013 19:45:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2MJjfkS089620; Fri, 22 Mar 2013 19:45:41 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2MJjfgA089619; Fri, 22 Mar 2013 19:45:41 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201303221945.r2MJjfgA089619@svn.freebsd.org> From: Glen Barber Date: Fri, 22 Mar 2013 19:45:41 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41289 - head/en_US.ISO8859-1/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Mar 2013 19:45:42 -0000 Author: gjb Date: Fri Mar 22 19:45:41 2013 New Revision: 41289 URL: http://svnweb.freebsd.org/changeset/doc/41289 Log: Comment the status page column for now, as the page does not yet exist. Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent ============================================================================== --- head/en_US.ISO8859-1/share/xml/release.l10n.ent Fri Mar 22 06:44:07 2013 (r41288) +++ head/en_US.ISO8859-1/share/xml/release.l10n.ent Fri Mar 22 19:45:41 2013 (r41289) @@ -86,14 +86,14 @@ - + - + From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 00:00:25 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CD69CB0E; Sat, 23 Mar 2013 00:00:25 +0000 (UTC) (envelope-from pgj@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 A6BAEB4C; Sat, 23 Mar 2013 00:00:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2N00PmN087519; Sat, 23 Mar 2013 00:00:25 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2N00Pt5087518; Sat, 23 Mar 2013 00:00:25 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201303230000.r2N00Pt5087518@svn.freebsd.org> From: Gabor Pali Date: Sat, 23 Mar 2013 00:00:25 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41290 - head/en_US.ISO8859-1/htdocs/news X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 00:00:25 -0000 Author: pgj Date: Sat Mar 23 00:00:25 2013 New Revision: 41290 URL: http://svnweb.freebsd.org/changeset/doc/41290 Log: - Add a recent status update to the compromise page Reviewed by: miwi, decke Modified: head/en_US.ISO8859-1/htdocs/news/2012-compromise.xml Modified: head/en_US.ISO8859-1/htdocs/news/2012-compromise.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/news/2012-compromise.xml Fri Mar 22 19:45:41 2013 (r41289) +++ head/en_US.ISO8859-1/htdocs/news/2012-compromise.xml Sat Mar 23 00:00:25 2013 (r41290) @@ -62,6 +62,7 @@ +

    Update: March 23rd, 2013

    + +

    Port managers have successfully restored some of the Project's + binary package building capacity. There are some issues left + still to resolve, e.g. how to publish the resulting package sets + in a secure manner or how to build packages seamlessly for 8.x and + 9.x systems on a recent 10.x system that the head node + ("pointyhat") is running, but we are very close to finish with the + preparations required for providing binary packages for the + upcoming 8.4 and further releases.

    + +

    Unless there are any other major changes, this is planned to be + the last status update to this page. An email will be sent to + the + FreeBSD announcements mailing list when the package build + infrastructure is online and packages are once again available.

    +

    Update: March 3rd, 2013

    Redports underwent a full security audit, and as a result could @@ -88,12 +106,6 @@ bringing it up on new hardware. At this point, we expect new binary packages to be available in 2-4 weeks.

    -

    Unless there are any other major changes, this is planned to be - the last status update to this page. An email will be sent to - the - FreeBSD announcements mailing list when the package build - infrastructure is online and packages are once again available.

    -

    Update: December 29th, 2012

    With the exception of systems relating to the building and testing From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 00:01:15 2013 Return-Path: Delivered-To: svn-doc-all@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 14FEBB8D; Sat, 23 Mar 2013 00:01:15 +0000 (UTC) (envelope-from obrien@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 E2A79B5A; Sat, 23 Mar 2013 00:01:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2N01EW1089130; Sat, 23 Mar 2013 00:01:14 GMT (envelope-from obrien@svn.freebsd.org) Received: (from obrien@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2N01EeF089129; Sat, 23 Mar 2013 00:01:14 GMT (envelope-from obrien@svn.freebsd.org) Message-Id: <201303230001.r2N01EeF089129@svn.freebsd.org> From: "David E. O'Brien" Date: Sat, 23 Mar 2013 00:01:14 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41291 - head/en_US.ISO8859-1/books/developers-handbook/kerneldebug X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 00:01:15 -0000 Author: obrien Date: Sat Mar 23 00:01:14 2013 New Revision: 41291 URL: http://svnweb.freebsd.org/changeset/doc/41291 Log: Update for uart(4) (FreeBSD 8.0+). Modified: head/en_US.ISO8859-1/books/developers-handbook/kerneldebug/chapter.xml Modified: head/en_US.ISO8859-1/books/developers-handbook/kerneldebug/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/developers-handbook/kerneldebug/chapter.xml Sat Mar 23 00:00:25 2013 (r41290) +++ head/en_US.ISO8859-1/books/developers-handbook/kerneldebug/chapter.xml Sat Mar 23 00:01:14 2013 (r41291) @@ -695,9 +695,9 @@ debugging information. Copy this kernel to the target machine, strip the debugging symbols off with strip -x, and boot it using the boot option. Connect the serial line - of the target machine that has "flags 080" set on its sio device - to any serial line of the debugging host. See &man.sio.4; for - information on how to set the flags on an sio device. + of the target machine that has "flags 080" set on its uart device + to any serial line of the debugging host. See &man.uart.4; for + information on how to set the flags on an uart device. Now, on the debugging machine, go to the compile directory of the target kernel, and start gdb: @@ -712,7 +712,7 @@ Copyright 1996 Free Software Foundation, Initialize the remote debugging session (assuming the first serial port is being used) by: - (kgdb) target remote /dev/cuaa0 + (kgdb) target remote /dev/cuau0 Now, on the target host (the one that entered DDB right before even starting the device probe), type: @@ -730,7 +730,7 @@ Stopped at Debugger+0x35: movb $0, edata immediately, simply type s (step). Your hosting GDB will now gain control over the target kernel: - Remote debugging using /dev/cuaa0 + Remote debugging using /dev/cuau0 Debugger (msg=0xf01b0383 "Boot flags requested debugger") at ../../i386/i386/db_interface.c:257 (kgdb) From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 00:20:36 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E25623BA; Sat, 23 Mar 2013 00:20:36 +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 D57FCE0A; Sat, 23 Mar 2013 00:20:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2N0KaDg094057; Sat, 23 Mar 2013 00:20:36 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2N0KaFt094055; Sat, 23 Mar 2013 00:20:36 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201303230020.r2N0KaFt094055@svn.freebsd.org> From: Glen Barber Date: Sat, 23 Mar 2013 00:20:36 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41292 - head/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 00:20:37 -0000 Author: gjb Date: Sat Mar 23 00:20:36 2013 New Revision: 41292 URL: http://svnweb.freebsd.org/changeset/doc/41292 Log: Enable beta.testing entity. Modified: head/share/xml/release.ent Modified: head/share/xml/release.ent ============================================================================== --- head/share/xml/release.ent Sat Mar 23 00:01:14 2013 (r41291) +++ head/share/xml/release.ent Sat Mar 23 00:20:36 2013 (r41292) @@ -29,8 +29,8 @@ don't have something in BETAn or RCn), then change %beta.testing below to "IGNORE". If we do, use "INCLUDE". --> - - + + From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 00:21:07 2013 Return-Path: Delivered-To: svn-doc-all@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 F152242B; Sat, 23 Mar 2013 00:21:06 +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 E40D0E17; Sat, 23 Mar 2013 00:21:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2N0L6ZT095581; Sat, 23 Mar 2013 00:21:06 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2N0L6UG095580; Sat, 23 Mar 2013 00:21:06 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201303230021.r2N0L6UG095580@svn.freebsd.org> From: Glen Barber Date: Sat, 23 Mar 2013 00:21:06 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41293 - head/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 00:21:07 -0000 Author: gjb Date: Sat Mar 23 00:21:06 2013 New Revision: 41293 URL: http://svnweb.freebsd.org/changeset/doc/41293 Log: Announce 8.4-BETA1 availability. Modified: head/share/xml/news.xml Modified: head/share/xml/news.xml ============================================================================== --- head/share/xml/news.xml Sat Mar 23 00:20:36 2013 (r41292) +++ head/share/xml/news.xml Sat Mar 23 00:21:06 2013 (r41293) @@ -34,6 +34,22 @@ 3 + 22 + + + &os; 8.4-BETA1 Available + +

    The first BETA build for the &os;-8.4 release cycle is + now available. ISO images for the amd64, i386 and pc98 + architectures are available + on most of our &os; + mirror sites.

    + + + + 14 From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 00:30:27 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 527B76D0; Sat, 23 Mar 2013 00:30:27 +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 453E0EB9; Sat, 23 Mar 2013 00:30:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2N0UQPf097069; Sat, 23 Mar 2013 00:30:26 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2N0UQQG097068; Sat, 23 Mar 2013 00:30:26 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201303230030.r2N0UQQG097068@svn.freebsd.org> From: Glen Barber Date: Sat, 23 Mar 2013 00:30:26 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41294 - head/en_US.ISO8859-1/htdocs/releases/8.4R X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 00:30:27 -0000 Author: gjb Date: Sat Mar 23 00:30:26 2013 New Revision: 41294 URL: http://svnweb.freebsd.org/changeset/doc/41294 Log: Add actual date for -BETA1. While here, add actual date for code freeze. Modified: head/en_US.ISO8859-1/htdocs/releases/8.4R/schedule.xml Modified: head/en_US.ISO8859-1/htdocs/releases/8.4R/schedule.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/releases/8.4R/schedule.xml Sat Mar 23 00:21:06 2013 (r41293) +++ head/en_US.ISO8859-1/htdocs/releases/8.4R/schedule.xml Sat Mar 23 00:30:26 2013 (r41294) @@ -56,7 +56,7 @@
    - + - + From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 09:38:53 2013 Return-Path: Delivered-To: svn-doc-all@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 ED17EB15; Sat, 23 Mar 2013 09:38:53 +0000 (UTC) (envelope-from miwi@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 D0C94D02; Sat, 23 Mar 2013 09:38:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2N9crX9071626; Sat, 23 Mar 2013 09:38:53 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2N9crHH071625; Sat, 23 Mar 2013 09:38:53 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201303230938.r2N9crHH071625@svn.freebsd.org> From: Martin Wilke Date: Sat, 23 Mar 2013 09:38:53 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41295 - head/en_US.ISO8859-1/articles/portbuild X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 09:38:54 -0000 Author: miwi Date: Sat Mar 23 09:38:53 2013 New Revision: 41295 URL: http://svnweb.freebsd.org/changeset/doc/41295 Log: - Update to the current setup - Remove reference to FreeBSD 7.X Modified: head/en_US.ISO8859-1/articles/portbuild/article.xml Modified: head/en_US.ISO8859-1/articles/portbuild/article.xml ============================================================================== --- head/en_US.ISO8859-1/articles/portbuild/article.xml Sat Mar 23 00:30:26 2013 (r41294) +++ head/en_US.ISO8859-1/articles/portbuild/article.xml Sat Mar 23 09:38:53 2013 (r41295) @@ -631,19 +631,19 @@ PKG_BIN=/usr/local/sbin/pkg Update the i386-7 tree and do a complete build - &prompt.user; dopackages.wrapper i386 7 -nosrc -norestr -nofinish + &prompt.user; dopackages.wrapper i386 8 latest -nosrc -norestr -nofinish Restart an interrupted amd64-8 build without updating - &prompt.user; dopackages.wrapper amd64 8 -nosrc -noports -norestr -continue -noindex -noduds -nofinish + &prompt.user; dopackages.wrapper amd64 8 latest -nosrc -noports -norestr -continue -noindex -noduds -nofinish - Post-process a completed sparc64-7 tree + Post-process a completed sparc64-8 tree - &prompt.user; dopackages.wrapper sparc64 7 -finish + &prompt.user; dopackages.wrapper sparc64 8 -finish Hint: it is usually best to run the dopackages @@ -1361,7 +1361,7 @@ umount: Cleanup of /x/tmp/8-exp/chroot/5 The following command will set up the control branch for the partial build: - &prompt.user; /a/portbuild/scripts/dopackages.wrapper i386 8 -noportsvcs -nobuild -novcs -nofinish + &prompt.user; /a/portbuild/scripts/dopackages.wrapper i386 8 latest -noportsvcs -nobuild -novcs -nofinish The builds must be performed from the @@ -1710,8 +1710,8 @@ sshd_program="/usr/local/sbin/sshd" squid_enable="YES" -squid_chdir="/usr2/squid/logs" -squid_pidfile="/usr2/squid/logs/squid.pid" +squid_chdir="/a/squid/logs" +squid_pidfile="/a/squid/logs/squid.pid" Required entries for VMWare-based nodes: vmware_guest_vmmemctl_enable="YES" @@ -1732,8 +1732,8 @@ sshd_program="/usr/local/sbin/sshd" gmond_enable="YES" squid_enable="YES" -squid_chdir="/usr2/squid/logs" -squid_pidfile="/usr2/squid/logs/squid.pid" +squid_chdir="/a/squid/logs" +squid_pidfile="/a/squid/logs/squid.pid" &man.ntpd.8; should not be enabled for VMWare instances. @@ -1741,7 +1741,7 @@ squid_pidfile="/u Also, it may be possible to leave squid disabled by default so as to not have - /usr2 + /a persistent (which should save instantiation time.) Work is still ongoing. @@ -1756,7 +1756,7 @@ squid_pidfile="/u Modify etc/sysctl.conf: 9a10,30 -> kern.corefile=/usr2/%N.core +> kern.corefile=/a/%N.core > kern.sugid_coredump=1 > #debug.witness_ddb=0 > #debug.witness_watch=0 @@ -1811,7 +1811,7 @@ security/sudo If you are using a local squid cache on the client, install the following - www/squid (with SQUID_AUFS on) + www/squid31 (with SQUID_AUFS on) @@ -1864,7 +1864,7 @@ security/sudo # # Configure a package build system post-boot -scratchdir=/usr2 +scratchdir=/a ln -sf ${scratchdir}/portbuild /var/ From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 10:45:19 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6B4EC598; Sat, 23 Mar 2013 10:45:19 +0000 (UTC) (envelope-from ryusuke@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 5DE3AEBB; Sat, 23 Mar 2013 10:45:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2NAjJTv092184; Sat, 23 Mar 2013 10:45:19 GMT (envelope-from ryusuke@svn.freebsd.org) Received: (from ryusuke@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2NAjJ0B092183; Sat, 23 Mar 2013 10:45:19 GMT (envelope-from ryusuke@svn.freebsd.org) Message-Id: <201303231045.r2NAjJ0B092183@svn.freebsd.org> From: Ryusuke SUZUKI Date: Sat, 23 Mar 2013 10:45:19 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41296 - head/ja_JP.eucJP/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 10:45:19 -0000 Author: ryusuke Date: Sat Mar 23 10:45:18 2013 New Revision: 41296 URL: http://svnweb.freebsd.org/changeset/doc/41296 Log: - Merge the following from the English version: r41225 -> r41293 head/ja_JP.eucJP/share/xml/news.xml Modified: head/ja_JP.eucJP/share/xml/news.xml Modified: head/ja_JP.eucJP/share/xml/news.xml ============================================================================== --- head/ja_JP.eucJP/share/xml/news.xml Sat Mar 23 09:38:53 2013 (r41295) +++ head/ja_JP.eucJP/share/xml/news.xml Sat Mar 23 10:45:18 2013 (r41296) @@ -20,7 +20,7 @@ the contents of will be preferred over <p>. $FreeBSD$ - Original revision: r41225 + Original revision: r41293 --> <news> <cvs:keyword xmlns:cvs="http://www.FreeBSD.org/XML/CVS"> @@ -34,6 +34,21 @@ <name>3</name> <day> + <name>22</name> + + <event> + <title>&os; 8.4-BETA1 ¸ø³« + +

    &os;-8.4 ¥ê¥ê¡¼¥¹¥µ¥¤¥¯¥ë¤ÎºÇ½é¤Î¥Æ¥¹¥È¥Ó¥ë¥É¤¬¸ø³«¤µ¤ì¤Þ¤·¤¿¡£ + amd64, i386 ¤ª¤è¤Ó pc98 ¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î ISO ¥¤¥á¡¼¥¸¤¬¡¢&os; + ¥ß¥é¡¼¥µ¥¤¥È ¤Ç ¸ø³« + ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£

    + + + + 14 From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 13:40:29 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 56AE27B2; Sat, 23 Mar 2013 13:40:29 +0000 (UTC) (envelope-from jkois@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 4930364F; Sat, 23 Mar 2013 13:40:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2NDeTC2045992; Sat, 23 Mar 2013 13:40:29 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2NDeTXv045991; Sat, 23 Mar 2013 13:40:29 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201303231340.r2NDeTXv045991@svn.freebsd.org> From: Johann Kois Date: Sat, 23 Mar 2013 13:40:29 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41297 - head/de_DE.ISO8859-1/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 13:40:29 -0000 Author: jkois Date: Sat Mar 23 13:40:28 2013 New Revision: 41297 URL: http://svnweb.freebsd.org/changeset/doc/41297 Log: r41225 -> r41293 MFde: Update the project news Obtained from: The FreeBSD German Documentation Project Modified: head/de_DE.ISO8859-1/share/xml/news.xml Modified: head/de_DE.ISO8859-1/share/xml/news.xml ============================================================================== --- head/de_DE.ISO8859-1/share/xml/news.xml Sat Mar 23 10:45:18 2013 (r41296) +++ head/de_DE.ISO8859-1/share/xml/news.xml Sat Mar 23 13:40:28 2013 (r41297) @@ -4,7 +4,7 @@ ]]> @@ -85,39 +90,47 @@
    - + - + - - - + + + - - + + - - - + + + +
    amd64amd64
    (x86-64, x64)
    [Distribution] [ISO]
    amd64amd64
    (x86-64, x64)
    [Distribution] [ISO]
    Version & Platform Distribution ISOStatus page
    FreeBSD &betarel.current;-&betarel.vers; [View]
    Code freeze begins 08 March 2013-08 March 2013 Release Engineers announce that all further commits to the stable/8 branch will require explicit approval. Certain blanket approvals will be granted for narrow areas of @@ -66,7 +66,7 @@
    BETA1 20 March 2013-22 March 2013 First beta test snapshot.
    Version & Plattform Distribution ISOStatusseite
    FreeBSD &betarel.current;-&betarel.vers; [Lesen]
    amd64[Distribution][ISO]amd64
    (x86-64, x64)
    [Distribution][ISO]
    i386[Distribution][ISO][Distribution][ISO]
    powerpc64[Distribution][ISO]pc98[Distribution][ISO]
    From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 14:42:13 2013 Return-Path: Delivered-To: svn-doc-all@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 75C00352; Sat, 23 Mar 2013 14:42:13 +0000 (UTC) (envelope-from jkois@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 68C55801; Sat, 23 Mar 2013 14:42:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2NEgCm8064835; Sat, 23 Mar 2013 14:42:12 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2NEgCrX064834; Sat, 23 Mar 2013 14:42:12 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201303231442.r2NEgCrX064834@svn.freebsd.org> From: Johann Kois Date: Sat, 23 Mar 2013 14:42:12 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41299 - head/en_US.ISO8859-1/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 14:42:13 -0000 Author: jkois Date: Sat Mar 23 14:42:12 2013 New Revision: 41299 URL: http://svnweb.freebsd.org/changeset/doc/41299 Log: ISO images for 8.4-BETA1 - There are no ISOs for sparc64/powerpc64 on FTP. Hide the links for now. Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent ============================================================================== --- head/en_US.ISO8859-1/share/xml/release.l10n.ent Sat Mar 23 14:34:33 2013 (r41298) +++ head/en_US.ISO8859-1/share/xml/release.l10n.ent Sat Mar 23 14:42:12 2013 (r41299) @@ -113,6 +113,7 @@ [Distribution] [ISO] + From owner-svn-doc-all@FreeBSD.ORG Sat Mar 23 18:32:03 2013 Return-Path: Delivered-To: svn-doc-all@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 A2A4D1F29; Sat, 23 Mar 2013 18:32:03 +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 949168B9; Sat, 23 Mar 2013 18:32:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2NIW3iq036705; Sat, 23 Mar 2013 18:32:03 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2NIW3Us036704; Sat, 23 Mar 2013 18:32:03 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201303231832.r2NIW3Us036704@svn.freebsd.org> From: Glen Barber Date: Sat, 23 Mar 2013 18:32:03 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41300 - head/en_US.ISO8859-1/share/xml X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Mar 2013 18:32:03 -0000 Author: gjb Date: Sat Mar 23 18:32:03 2013 New Revision: 41300 URL: http://svnweb.freebsd.org/changeset/doc/41300 Log: Add FreeBSD id string to en_US.ISO8859-1/share/xml/release.l10n.ent Requested by: ryusuke Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent (contents, props changed) Modified: head/en_US.ISO8859-1/share/xml/release.l10n.ent ============================================================================== --- head/en_US.ISO8859-1/share/xml/release.l10n.ent Sat Mar 23 14:42:12 2013 (r41299) +++ head/en_US.ISO8859-1/share/xml/release.l10n.ent Sat Mar 23 18:32:03 2013 (r41300) @@ -1,4 +1,6 @@ + + ]]>