From owner-p4-projects@FreeBSD.ORG Mon Sep 27 19:07:30 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id C5238106566C; Mon, 27 Sep 2010 19:07:30 +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 85DFE1065672 for ; Mon, 27 Sep 2010 19:07:30 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 71AF58FC15 for ; Mon, 27 Sep 2010 19:07:30 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id o8RJ7U70024113 for ; Mon, 27 Sep 2010 19:07:30 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id o8RJ7Uft024110 for perforce@freebsd.org; Mon, 27 Sep 2010 19:07:30 GMT (envelope-from rene@FreeBSD.org) Date: Mon, 27 Sep 2010 19:07:30 GMT Message-Id: <201009271907.o8RJ7Uft024110@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 184238 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Sep 2010 19:07:31 -0000 http://p4web.freebsd.org/@@184238?ac=10 Change 184238 by rene@rene_acer on 2010/09/27 19:07:07 IFC Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#71 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml#52 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/portbuild/article.sgml#26 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/developers-handbook/kerneldebug/chapter.sgml#3 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/install/chapter.sgml#11 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#88 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/authors.ent#45 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#52 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/config/chapter.sgml#21 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml#19 integrate .. //depot/projects/docproj_nl/share/pgpkeys/ehaupt.key#2 integrate .. //depot/projects/docproj_nl/share/pgpkeys/martymac.key#1 branch .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys-developers.sgml#45 integrate .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys.ent#42 integrate .. //depot/projects/docproj_nl/share/pgpkeys/sunpoet.key#1 branch .. //depot/projects/docproj_nl/www/en/cgi/man.cgi#18 integrate .. //depot/projects/docproj_nl/www/en/developers.sgml#43 integrate .. //depot/projects/docproj_nl/www/en/donations/donors.sgml#35 integrate .. //depot/projects/docproj_nl/www/en/donations/wantlist.sgml#22 integrate .. //depot/projects/docproj_nl/www/en/portmgr/Makefile#2 integrate .. //depot/projects/docproj_nl/www/en/portmgr/index.sgml#3 integrate .. //depot/projects/docproj_nl/www/en/portmgr/policies.sgml#2 integrate .. //depot/projects/docproj_nl/www/en/portmgr/policies_releng_4.sgml#2 delete .. //depot/projects/docproj_nl/www/en/portmgr/policies_releng_6.sgml#1 branch .. //depot/projects/docproj_nl/www/share/sgml/advisories.xml#18 integrate .. //depot/projects/docproj_nl/www/share/sgml/news.xml#90 integrate .. //depot/projects/docproj_nl/www/share/sgml/usergroups.xml#16 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#71 (text+ko) ==== @@ -1,4 +1,4 @@ - + + @@ -442,44 +442,6 @@ ddd's graphical interface. - - Post-Mortem Analysis of a Dump - - What do you do if a kernel dumped core but you did not expect it, - and it is therefore not compiled using config -g? Not - everything is lost here. Do not panic! - - Of course, you still need to enable crash dumps. See above for the - options you have to specify in order to do this. - - Go to your kernel config directory - (/usr/src/sys/arch/conf) - and edit your configuration file. Uncomment (or add, if it does not - exist) the following line: - - makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols - - Rebuild the kernel. Due to the time stamp change on the Makefile, - some other object files will be rebuilt, for example - trap.o. With a bit of luck, the added - option will not change anything for the generated - code, so you will finally get a new kernel with similar code to the - faulting one but with some debugging symbols. You should at least verify the - old and new sizes with the &man.size.1; command. If there is a - mismatch, you probably need to give up here. - - Go and examine the dump as described above. The debugging symbols - might be incomplete for some places, as can be seen in the stack trace - in the example above where some functions are displayed without line - numbers and argument lists. If you need more debugging symbols, remove - the appropriate object files, recompile the kernel again and repeat the - gdb - session until you know enough. - - All this is not guaranteed to work, but it will do it fine in most - cases. - - On-Line Kernel Debugging Using DDB @@ -769,65 +731,6 @@ window), etc. - - Debugging Loadable Modules Using GDB - - When debugging a panic that occurred within a module, or - using remote GDB against a machine that uses dynamic modules, - you need to tell GDB how to obtain symbol information for those - modules. - - First, you need to build the module(s) with debugging - information: - - &prompt.root; cd /sys/modules/linux -&prompt.root; make clean; make COPTS=-g - - If you are using remote GDB, you can run - kldstat on the target machine to find out - where the module was loaded: - - &prompt.root; kldstat -Id Refs Address Size Name - 1 4 0xc0100000 1c1678 kernel - 2 1 0xc0a9e000 6000 linprocfs.ko - 3 1 0xc0ad7000 2000 warp_saver.ko - 4 1 0xc0adc000 11000 linux.ko - - If you are debugging a crash dump, you will need to walk the - linker_files list, starting at - linker_files->tqh_first and following the - link.tqe_next pointers until you find the - entry with the filename you are looking for. - The address member of that entry is the load - address of the module. - - Next, you need to find out the offset of the text section - within the module: - - &prompt.root; objdump --section-headers /sys/modules/linux/linux.ko | grep text - 3 .rel.text 000016e0 000038e0 000038e0 000038e0 2**2 - 10 .text 00007f34 000062d0 000062d0 000062d0 2**2 - - The one you want is the .text section, - section 10 in the above example. The fourth hexadecimal field - (sixth field overall) is the offset of the text section within - the file. Add this offset to the load address of the module to - obtain the relocation address for the module's code. In our - example, we get 0xc0adc000 + 0x62d0 = 0xc0ae22d0. Use the - add-symbol-file command in GDB to tell the - debugger about the module: - - (kgdb) add-symbol-file /sys/modules/linux/linux.ko 0xc0ae22d0 -add symbol table from file "/sys/modules/linux/linux.ko" at text_addr = 0xc0ae22d0? -(y or n) y -Reading symbols from /sys/modules/linux/linux.ko...done. -(kgdb) - - You should now have access to all the symbols in the - module. - - Debugging a Console Driver ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/install/chapter.sgml#11 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -4560,8 +4560,8 @@ off USB drives. It also supports booting into a livefs based rescue mode. The documentation packages are provided but no other - packages. This image is not available for &os;7.3 and - earlier. + packages. This image is not available for &os; 7.3 + and earlier. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#88 (text+ko) ==== @@ -1,7 +1,7 @@ Please only use characters [-+._a-zA-Z0-9] for naming your patches. Do not use any other characters besides them. Do not name your patches like patch-aa or - patch-ab etc, always mention path and file name + patch-ab etc, always mention the path and file name in patch names. Do not put RCS strings in patches. CVS will mangle them when we @@ -745,8 +745,8 @@ If you want to create a patch file based off of an existing file, you can copy it with an .orig extension, and then modify the - original one. Run makepatch, and - this will write out an appropriate patch file to the makepatch target + will write out an appropriate patch file to the files directory of the port. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/authors.ent#45 (text+ko) ==== @@ -13,7 +13,7 @@ builds for the other languages, and we will poke fun of you in public. - $FreeBSD: doc/en_US.ISO8859-1/share/sgml/authors.ent,v 1.523 2010/09/08 15:28:43 arved Exp $ + $FreeBSD: doc/en_US.ISO8859-1/share/sgml/authors.ent,v 1.526 2010/09/24 22:57:35 martymac Exp $ --> aaron@FreeBSD.org"> @@ -464,6 +464,8 @@ hrs@FreeBSD.org"> +hselasky@FreeBSD.org"> + hsu@FreeBSD.org"> iedowse@FreeBSD.org"> @@ -724,6 +726,8 @@ martin@FreeBSD.org"> +martymac@FreeBSD.org"> + mat@FreeBSD.org"> matk@FreeBSD.org"> @@ -1098,6 +1102,8 @@ sumikawa@FreeBSD.org"> +sunpoet@FreeBSD.org"> + suz@FreeBSD.org"> swallace@FreeBSD.org"> ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#52 (text+ko) ==== @@ -1,7 +1,7 @@ + -uid Emanuel Haupt -sub 2048g/6DD0929C 2007-02-06 [expires: 2008-02-06] +sub 2048R/F658659F 2010-09-24 [expires: 2011-09-24] ]]> ==== //depot/projects/docproj_nl/share/pgpkeys/pgpkeys-developers.sgml#45 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -566,6 +566,11 @@ &pgpkey.mich; + + &a.sunpoet; + &pgpkey.sunpoet; + + &a.lwhsu; &pgpkey.lwhsu; @@ -741,6 +746,11 @@ &pgpkey.erwin; + + &a.martymac; + &pgpkey.martymac; + + &a.glarkin; &pgpkey.glarkin; ==== //depot/projects/docproj_nl/share/pgpkeys/pgpkeys.ent#42 (text+ko) ==== @@ -1,5 +1,5 @@ - + @@ -202,6 +202,7 @@ + @@ -304,6 +305,7 @@ + ==== //depot/projects/docproj_nl/www/en/cgi/man.cgi#18 (text+ko) ==== @@ -34,7 +34,7 @@ # Dual CGI/Plexus mode and new interface by sanders@bsdi.com 9/22/1995 # # $Id: man.cgi,v 1.172 2007/11/28 18:51:29 hrs Exp $ -# $FreeBSD: www/en/cgi/man.cgi,v 1.254 2010/08/09 19:37:14 wosch Exp $ +# $FreeBSD: www/en/cgi/man.cgi,v 1.255 2010/09/26 15:29:49 wosch Exp $ ############################################################################ # !!! man.cgi is stale perl4 code !!! @@ -146,6 +146,7 @@ 'CentOS Linux/i386 3.9' => { 'path' => '1:2:3:3p:4:5:6:7:8:9:n', }, 'CentOS Linux/i386 4.8' => { 'path' => '1:1p:2:3:3p:4:5:6:7:8:9:n:0p', }, 'CentOS Linux/i386 5.4' => { 'path' => '0p:1:1p:1x:2:2x:3:3p:3x:4:4x:5:5x:6:6x:7:7x:8:8x:9:9x:l:n', }, + 'CentOS Linux/i386 5.5' => { 'path' => '0p:1:1p:1x:2:2x:3:3p:3x:4:4x:5:5x:6:6x:7:7x:8:8x:9:9x:l:n', }, 'SuSE Linux/i386 4.3' => { 'path' => '0p:1:1p:2:3:3p:4:5:6:7:8:9:n:s', }, 'SuSE Linux/i386 5.0' => { 'path' => '0p:1:1p:2:3:3p:4:5:6:7:8:9:n:s', }, @@ -382,6 +383,7 @@ 'CentOS Linux/i386 3.9', "$manLocalDir/CentOS-3.9", 'CentOS Linux/i386 4.8', "$manLocalDir/CentOS-4.8", 'CentOS Linux/i386 5.4', "$manLocalDir/CentOS-5.4", + 'CentOS Linux/i386 5.5', "$manLocalDir/CentOS-5.5", 'SuSE Linux/i386 4.3', "$manLocalDir/SuSE-4.3-i386", 'SuSE Linux/i386 5.0', "$manLocalDir/SuSE-5.0-i386", @@ -540,7 +542,7 @@ 'slackware', 'Linux Slackware 3.1', 'redhat', 'Red Hat Linux/i386 9', - 'centos', 'CentOS Linux/i386 5.4', + 'centos', 'CentOS Linux/i386 5.5', 'suse', 'SuSE Linux/i386 11.3', 'linux', 'SuSE Linux/i386 11.3', 'darwin', 'Darwin 8.0.1/ppc', @@ -1443,7 +1445,7 @@ } local $id = - '$FreeBSD: www/en/cgi/man.cgi,v 1.254 2010/08/09 19:37:14 wosch Exp $'; + '$FreeBSD: www/en/cgi/man.cgi,v 1.255 2010/09/26 15:29:49 wosch Exp $'; return qq{\
 Copyright (c) 1996-2010 Wolfram Schneider

==== //depot/projects/docproj_nl/www/en/developers.sgml#43 (text+ko) ====

@@ -6,7 +6,7 @@
 us to update author names, or the representation of those names (such
 as adding email addresses), by just editing a single file.
 
-$FreeBSD: www/en/developers.sgml,v 1.264 2010/09/08 04:51:15 andreast Exp $
+$FreeBSD: www/en/developers.sgml,v 1.267 2010/09/24 23:05:14 martymac Exp $
 
 -->
 
@@ -232,6 +232,7 @@
 
 
 
+
 
 
 
@@ -362,6 +363,7 @@
 
 
 
+
 
 
 
@@ -548,6 +550,7 @@
 
 
 
+
 
 
 

==== //depot/projects/docproj_nl/www/en/donations/donors.sgml#35 (text+ko) ====

@@ -1,6 +1,6 @@
 
-
+
 
 
  %developers;
@@ -2783,7 +2783,7 @@
   
 
   
-     Travis T 
+     Travis Thaxton 
      Dell Optiplex 960 
      ade 
      received 
@@ -2795,6 +2795,13 @@
      delphij 
      received 
   
+
+  
+     Travis Thaxton
+     Dell 22" LCD monitor
+     dougb
+     received
+  
 
 
 &footer;

==== //depot/projects/docproj_nl/www/en/donations/wantlist.sgml#22 (text+ko) ====

@@ -1,6 +1,6 @@
 
-
+
 
 
 
@@ -74,14 +74,6 @@
       
 
       
-	dougb
-	CA, US
-	Laptop HD, SATA-300, 200+ Gb, good performance
-	Replace aging HD in my day-to-day laptop running
-	  FreeBSD-current
-      
-
-      
 	grehan
 	California, USA
 	Apple G4 XServe

==== //depot/projects/docproj_nl/www/en/portmgr/Makefile#2 (text+ko) ====

@@ -1,4 +1,4 @@
-# $FreeBSD: www/en/portmgr/Makefile,v 1.3 2006/05/11 22:58:42 pav Exp $
+# $FreeBSD: www/en/portmgr/Makefile,v 1.4 2010/09/17 13:29:46 tabthorpe Exp $
 
 .if exists(../Makefile.conf)
 .include "../Makefile.conf"
@@ -13,7 +13,7 @@
 DOCS+=	policies.sgml
 DOCS+=	policies_committing.sgml
 DOCS+=	policies_contributors.sgml
-DOCS+=	policies_releng_4.sgml
+DOCS+=	policies_releng_6.sgml
 DOCS+=	qa.sgml
 
 .include "${WEB_PREFIX}/share/mk/web.site.mk"

==== //depot/projects/docproj_nl/www/en/portmgr/index.sgml#3 (text+ko) ====

@@ -1,6 +1,6 @@
 
-
+
 
 
 
@@ -29,8 +29,8 @@
 its goals, such as
 timeouts for inactivity and
 when commits are allowed.
-Also contains the end of support policy
-on FreeBSD 4.X.

+Also contains the end of support policy +on FreeBSD 6.X.

Implementation Issues

==== //depot/projects/docproj_nl/www/en/portmgr/policies.sgml#2 (text+ko) ==== @@ -1,6 +1,6 @@ - + ]> @@ -12,8 +12,8 @@ Ports Management Team has adopted certain policies to try to meet each of its goals.

-

EOS/EOL Policies of Ports and Ports - Intrastructure on RELENG_4

+

EOS/EOL Policies of Ports and Ports + Intrastructure on RELENG_6

Assure The Integrity Of The Ports Collection

==== //depot/projects/docproj_nl/www/share/sgml/advisories.xml#18 (text+ko) ==== @@ -2,7 +2,7 @@ - $FreeBSD: www/share/sgml/advisories.xml,v 1.238 2010/07/13 02:53:27 cperciva Exp $ + $FreeBSD: www/share/sgml/advisories.xml,v 1.239 2010/09/20 15:09:26 cperciva Exp $ @@ -10,6 +10,18 @@ 2010 + 9 + + + 20 + + + FreeBSD-SA-10:08.bzip2 + + + + + 7 ==== //depot/projects/docproj_nl/www/share/sgml/news.xml#90 (text+ko) ==== @@ -25,7 +25,7 @@ - $FreeBSD: www/share/sgml/news.xml,v 1.344 2010/09/08 10:51:20 jkois Exp $ + $FreeBSD: www/share/sgml/news.xml,v 1.346 2010/09/24 23:29:32 martymac Exp $ @@ -36,6 +36,20 @@ 9 + 25 + +

New committer: Ganael Laplanche (ports)

+
+
+ + + 21 + +

New committer: Po-Chuan Hsieh (ports)

+
+
+ + 5

New committer: Andreas Tobler (src)

==== //depot/projects/docproj_nl/www/share/sgml/usergroups.xml#16 (text+ko) ==== @@ -5,7 +5,7 @@ - $FreeBSD: www/share/sgml/usergroups.xml,v 1.96 2010/08/27 18:40:29 pgj Exp $ + $FreeBSD: www/share/sgml/usergroups.xml,v 1.97 2010/09/22 18:45:40 jkois Exp $ @@ -203,12 +203,12 @@ provides a regional forum for users of all Unix flavors, with a stress on Linux and BSD. Meetings - are held on the third Monday of each month at the - "Tomate" in B6,12 68159 Mannheim. The - FIXME - meeting happens every first Friday of each month in - "Forum41" in Schwetzingen. Located in Germany, - Rhine-Neckar-Region. + are held on the third Monday of each month in Heidelberg. + The FIXME meeting happens + every first Friday of each month in the + RaumZeitLabor in + Mannheim. Located in Germany, Rhine-Neckar-Region.