From owner-p4-projects@FreeBSD.ORG Sat May 16 19:41:25 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 4DA0C1065670; Sat, 16 May 2009 19:41:25 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 047581065675 for ; Sat, 16 May 2009 19:41:25 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E6CA08FC12 for ; Sat, 16 May 2009 19:41:24 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n4GJfObn065935 for ; Sat, 16 May 2009 19:41:24 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n4GJfOBR065933 for perforce@freebsd.org; Sat, 16 May 2009 19:41:24 GMT (envelope-from rene@FreeBSD.org) Date: Sat, 16 May 2009 19:41:24 GMT Message-Id: <200905161941.n4GJfOBR065933@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Cc: Subject: PERFORCE change 162174 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 May 2009 19:41:26 -0000 http://perforce.freebsd.org/chv.cgi?CH=162174 Change 162174 by rene@rene_self on 2009/05/16 19:40:34 IFC Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/portbuild/article.sgml#10 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#7 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml#15 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#28 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/articles/contributing/article.sgml#19 integrate .. //depot/projects/docproj_nl/share/sgml/man-refs.ent#17 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/portbuild/article.sgml#10 (text+ko) ==== @@ -11,7 +11,7 @@ The &os; Ports Management Team - $FreeBSD: doc/en_US.ISO8859-1/articles/portbuild/article.sgml,v 1.36 2009/01/07 09:34:58 pav Exp $ + $FreeBSD: doc/en_US.ISO8859-1/articles/portbuild/article.sgml,v 1.37 2009/05/14 15:33:07 erwin Exp $ 2003 @@ -608,9 +608,9 @@ to identify it. You need to make sure that nothing else important is running in this tty, e.g. ps -t p1 or whatever. If there is not, you can just kill off the whole term easily with - pkill -t p1; otherwise issue a + pkill -t pts/1; otherwise issue a kill -HUP in there by, for example, -ps -t p1 -o pid= | xargs kill -HUP. Replace +ps -t pts/1 -o pid= | xargs kill -HUP. Replace p1 by whatever the tty is, of course. The ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#7 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -96,7 +96,7 @@ dynamic loadable kernel module for that functionality. Building a custom kernel is one of the most important rites of - passage nearly every BSD user must endure. This process, while + passage for advanced BSD users. This process, while time consuming, will provide many benefits to your &os; system. Unlike the GENERIC kernel, which must support a wide range of hardware, a custom kernel only contains support for @@ -112,9 +112,11 @@ Lower memory usage. A custom kernel often uses less memory - than the GENERIC kernel, which is important - because the kernel must always be present in real - memory. For this reason, a custom kernel is especially useful + than the GENERIC kernel by omitting unused + features and device drivers. This is important because the kernel + code remains resident in physical memory at all times, preventing + that memory from being used by applications. + For this reason, a custom kernel is especially useful on a system with a small amount of RAM. @@ -231,7 +233,7 @@ page: Alternatively, to load the driver as a module at boot time, place the -following line in &man.loader.conf.5;: +following line in &man.loader.conf.5: if_ath_load="YES" @@ -495,6 +497,34 @@ architecture independent options, see /usr/src/sys/conf/NOTES. + As of &os; 5.0, a new include directive is + available for use in configuration files. This allows another + configuration file to be logically included in the current one, making + it easy to maintain small changes relative to an existing file. For + example, if you require a GENERIC kernel with + only a small number of additional options or drivers, this allows you + to maintain only a delta with respect to GENERIC: + + include GENERIC +ident MYKERNEL + +options IPFIREWALL +options DUMMYNET +options IPFIREWALL_DEFAULT_TO_ACCEPT +options IPDIVERT + + + Many administrators will find that this model offers significant + benefits over the historic writing of configuration files from scratch: + the local configuration file will express only local differences from + a GENERIC kernel and as upgrades are performed, + new features added to GENERIC will be added to the + local kernel unless specifically prevented using + nooptions or nodevice. The + remainder of this chapter addresses the contents of a typical + configuration file and the role various options and devices + play. + To build a file which contains all available options, as normally done for testing purposes, run the following ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml#15 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -2431,6 +2431,15 @@ + RELENG_7_2 + + + The release branch for FreeBSD-7.2, used only for + security advisories and other critical fixes. + + + + RELENG_7_1 ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#28 (text+ko) ==== @@ -1,7 +1,7 @@ + 702101 + May 15, 2009 + 7.2-STABLE after ichsmb(4) was changed to + use left-adjused slave addressing to match other + SMBus controller drivers. + + + 800000 October 11, 2007 8.0-CURRENT. Separating wide and single byte @@ -13048,8 +13056,16 @@ 8.0-CURRENT after adding support for input lines of arbitrarily length in patch(1). - - + + 800087 + May 11, 2009 + 8.0-CURRENT after some VFS KPI changes. The thread + argument has been removed from the FSD parts of the VFS. + VFS_* functions do not need the + context any more because it always refers to + curthread. In some special cases, + the old behavior is retained. + ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/articles/contributing/article.sgml#19 (text+ko) ==== @@ -1,4 +1,4 @@ - + ==== //depot/projects/docproj_nl/share/sgml/man-refs.ent#17 (text+ko) ==== @@ -20,7 +20,7 @@ lexicographical order by the entity (i.e., the dots used in place of special characters should not be expanded when comparing). - $FreeBSD: doc/share/sgml/man-refs.ent,v 1.485 2009/04/29 15:13:21 hrs Exp $ + $FreeBSD: doc/share/sgml/man-refs.ent,v 1.486 2009/05/16 10:47:00 brueffer Exp $ --> @@ -3311,6 +3311,7 @@ + @@ -3786,6 +3787,7 @@ +