From owner-freebsd-doc@FreeBSD.ORG Sun Oct 29 14:50:15 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3ECFD16A407 for ; Sun, 29 Oct 2006 14:50:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4472543D53 for ; Sun, 29 Oct 2006 14:50:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9TEoEwc075536 for ; Sun, 29 Oct 2006 14:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9TEoEuQ075535; Sun, 29 Oct 2006 14:50:14 GMT (envelope-from gnats) Resent-Date: Sun, 29 Oct 2006 14:50:14 GMT Resent-Message-Id: <200610291450.k9TEoEuQ075535@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Alejandro Pulver" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6329E16A407 for ; Sun, 29 Oct 2006 14:42:23 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id 0B03343D5A for ; Sun, 29 Oct 2006 14:42:22 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: (qmail 61088 invoked from network); 29 Oct 2006 14:42:20 -0000 Received: from unknown (HELO phobos.mars.bsd) (unknown) by unknown with SMTP; 29 Oct 2006 14:42:20 -0000 Message-Id: <1162132944.19094@phobos.mars.bsd> Date: Sun, 29 Oct 2006 11:42:24 -0300 From: "Alejandro Pulver" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.7 Cc: Subject: docs/104909: [PATCH] Add Lua entry to PH X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Oct 2006 14:50:15 -0000 >Number: 104909 >Category: docs >Synopsis: [PATCH] Add Lua entry to PH >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 29 14:50:13 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Alejandro Pulver >Release: FreeBSD 6.1-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD 6.1-RELEASE-p1 #3: Mon Jun 19 14:49:35 ART 2006 root@phobos.mars.bsd:/usr/obj/usr/src/sys/ATHLON-PHOBOS >Description: - Add Lua entry to PH. - Fix wrong comment in bsd.lua.mk. Please review this patch since it is my first docs PR. >How-To-Repeat: >Fix: --- patch.diff begins here --- Index: doc/en_US.ISO8859-1/books/porters-handbook/book.sgml =================================================================== RCS file: /home/dcvs/doc/en_US.ISO8859-1/books/porters-handbook/book.sgml,v retrieving revision 1.759 diff -u -r1.759 book.sgml --- doc/en_US.ISO8859-1/books/porters-handbook/book.sgml 7 Oct 2006 20:55:22 -0000 1.759 +++ doc/en_US.ISO8859-1/books/porters-handbook/book.sgml 29 Oct 2006 14:36:50 -0000 @@ -6263,6 +6263,550 @@ + + Using <application>Lua</application> + + This section describes the status of the + Lua libraries in the ports tree and its + integration with the ports system. + + + Introduction + + There are many versions of the Lua + libraries and corresponding interpreters, which conflict between + them (install files under the same name). In the ports tree this + problem has been solved by installing each version under a different + name using version number suffixes. + + The obvious disadventage of this is that each application has to + be modified to found the expected version. But it can be solved by + adding some additional flags to the compiler and linker. + + + + Version selection + + To make your port use a specific version of + Lua there are two variables available + for defining (if only one is defined the other will be set to a + default value): + + + Variables to select <application>Lua</application> + versions + + + + + Variable + + Description + + Default value + + + + + + USE_LUA + + List of versions the port can use + + All available versions + + + + USE_LUA_NOT + + List of versions the port can not use + + None + + + +
+ + The following is a list of available + Lua versions and the corresponding port + in the tree: + + + Available <application>Lua</application> versions + + + + + Version + + Port + + + + + + 4.0 + + lang/lua4 + + + + 5.0 + + lang/lua50 + + + + 5.1 + + lang/lua + + + +
+ + The variables in can be set + to one or more of the following combinations separated by + spaces: + + + <application>Lua</application> version specifications + + + + + Description + + Example + + + + + + Single version + + 4.0 + + + + Ascending range + + 5.0+ + + + + Descending range + + 5.0- + + + + Full range (must be ascending) + + 5.0-5.1 + + + +
+ + There are also some variables to select the preferred versions + from the available ones. They can be set to a list of versions, the + first ones will have higher priority. + + + Variables to select preferred <application>Lua</application> + versions + + + + + Name + + Designed for + + + + + + WANT_LUA_VER + + the port + + + + WITH_LUA_VER + + the user + + + +
+ + + Selecting the <application>Lua</application> version + + The following fragment is from a port which can use + Lua version 5.0 or + 5.1, and uses 5.0 by + default. It can be overriden by the user using + WITH_LUA_VER. + + USE_LUA= 5.0-5.1 +WANT_LUA_VER= 5.0 + +
+ + + Component selection + + There are other applications that, while not being + Lua libraries, are related to them. These + applications can be specified in the LUA_COMPS + variable. The following components are available: + + + Available <application>Lua</application> components + + + + + Name + + Description + + Version restriction + + + + + + lua + + main library + + none + + + + tolua + + Library for accesing C/C++ code + + 4.0-5.0 + + + + ruby + + Ruby bindings + + 4.0-5.0 + + + +
+ + + There are more components but they are modules for the + interpreter, not used by applications (only by other + modules). + + + The dependency type added when you select each component can be + manually specified by adding a suffix separated by a + :, or a default value will be used. The available + dependency types are: + + + Available <application>Lua</application> dependency + types + + + + + Name + + Description + + + + + + build + + Component is required for building, equivalent to + BUILD_DEPENDS + + + + run + + Component is required for running, equivalent to + RUN_DEPENDS + + + + lib + + Component is required for building and running, + equivalent to LIB_DEPENDS + + + +
+ + The default values for the components are detailed in the + following table: + + + Default <application>Lua</application> dependency + types + + + + + Name + + Value + + + + + + lua + + lib for 4.0-5.0 + (shared) and build for + 5.1 (static) + + + + tolua + + build (static) + + + + ruby + + lib (shared) + + + +
+ + + Selecting <application>Lua</application> components + + The following fragment corresponds to a port which uses + Lua version 4.0 and + its Ruby bindings. + + USE_LUA= 4.0 +LUA_COMPS= lua ruby + +
+ + + Detecting installed versions + + To detect an installed version you have to define + WANT_LUA. If you do not set it to a specific + version then the components will have a version suffix. The + HAVE_LUA variable will be filled after + detection. + + + Detecting installed <application>Lua</application> versions + and components + + The following fragment can be used in a port that uses + Lua if it is installed, or an option is + selected. + + WANT_LUA= yes + +.include <bsd.port.pre.mk> + +.if defined(WITH_LUA5) || ${HAVE_LUA:Mlua-5.[01]} != "" +USE_LUA= 5.0-5.1 +CONFIGURE_ARGS+=--enable-lua5 +.endif + + The following fragment can be used in a port that enables + tolua support if it is installed or if + an option is selected, in addition to + Lua, both version + 4.0. + + USE_LUA= 4.0 +LUA_COMPS= lua +WANT_LUA= 4.0 + +.include <bsd.port.pre.mk> + +.if defined(WITH_TOLUA) || ${HAVE_LUA:Mtolua} != "" +LUA_COMPS+= tolua +CONFIGURE_ARGS+=--enable-tolua +.endif + + + + + Defined variables + + The following variables are defined after defining one of the + variables from . + + + Variables defined for ports that use + <application>Lua</application> + + + + + Name + + Description + + + + + + LUA_VER + + The Lua version that is + going to be used (e.g., 5.1) + + + + LUA_VER_SH + The Lua shared library major + version (e.g., 1) + + + + LUA_VER_STR + + The Lua version without the + dots (e.g., 51) + + + + LUA_PREFIX + + The prefix where Lua (and + components) is installed + + + + LUA_SUBDIR + + The directory under ${PREFIX}/bin, + ${PREFIX}/share and + ${PREFIX}/lib where + Lua is installed + + + + LUA_INCDIR + + The directory where Lua and + tolua header files are + installed + + + + LUA_LIBDIR + + The directory where Lua and + tolua libraries are + installed + + + + LUA_MODLIBDIR + + The directory where Lua + module libraries (.so) are + installed + + + + LUA_MODSHAREDIR + + The directory where Lua + modules (.lua) are installed + + + + LUA_PKGNAMEPREFIX + + The package name prefix used by + Lua modules + + + +
+ + + Telling the port where to find + <application>Lua</application> + + The following fragment shows how to tell a port that uses a + configure script where the Lua header + files and libraries are. + + +USE_LUA= 4.0 +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LUA_INCDIR}" LDFLAGS="-L${LUA_LIBDIR}" + +
+ + + Processing in <filename>bsd.port.pre.mk</filename> + + If you need to use the variables for running commands right + after including bsd.port.pre.mk you need to + define LUA_PREMK. + + + If you define LUA_PREMK, then the version, + dependencies, components and defined variables will not change if + you modify the Lua port variables + after including + bsd.port.pre.mk. + + + + Using <application>Lua</application> variables in + commands + + The following fragment illustrates the use of + LUA_PREMK by running the + Lua interpreter to obtain the full + version string, assign it to a variable and pass it to the + program. + + USE_LUA= 5.0 +LUA_PREMK= yes + +.include <bsd.port.pre.mk> + +VER_STR!= lua${LUA_VER} -v + +CFLAGS+= -DLUA_VERSION_STRING="${VER_STR}" + + + + The Lua variables can be safely + used in commands when they are inside targets without the need of + LUA_PREMK. + + +
+ Starting and stopping services (rc scripts) --- patch.diff ends here --- --- patch2.diff begins here --- Index: ports/Mk/bsd.lua.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.lua.mk,v retrieving revision 1.2 diff -u -r1.2 bsd.lua.mk --- ports/Mk/bsd.lua.mk 5 Oct 2006 18:17:25 -0000 1.2 +++ ports/Mk/bsd.lua.mk 28 Oct 2006 15:41:34 -0000 @@ -75,9 +75,9 @@ # LUA_SUBDIR - The directory under bin/share/lib where Lua is installed. # LUA_INCDIR - The directory where Lua and tolua header files are installed. # LUA_LIBDIR - The directory where Lua and tolua libraries are installed. -# LUA_MODLIBDIR - The directory where Lua modules (.lua) are installed. +# LUA_MODLIBDIR - The directory where Lua module libraries (.so) are installed. # LUA_MODSHAREDIR -# - The directory where Lua module libraries (.so) are installed. +# - The directory where Lua modules (.lua) are installed. # LUA_PKGNAMEPREFIX # - The package name prefix used by Lua modules. # --- patch2.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Oct 29 15:23:54 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E49B416A403; Sun, 29 Oct 2006 15:23:54 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 815C443D49; Sun, 29 Oct 2006 15:23:54 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9TFNsb7078016; Sun, 29 Oct 2006 15:23:54 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9TFNsKI078012; Sun, 29 Oct 2006 15:23:54 GMT (envelope-from pav) Date: Sun, 29 Oct 2006 15:23:54 GMT From: Pav Lucistnik Message-Id: <200610291523.k9TFNsKI078012@freefall.freebsd.org> To: alepulver@FreeBSD.org, pav@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/104909: [PATCH] Add Lua entry to PH X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Oct 2006 15:23:55 -0000 Synopsis: [PATCH] Add Lua entry to PH State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sun Oct 29 15:23:16 UTC 2006 State-Changed-Why: Committed to PH. The bsd.lua.mk patch can be applied directly by you - you are the maintainer of that file, after all. http://www.freebsd.org/cgi/query-pr.cgi?pr=104909 From owner-freebsd-doc@FreeBSD.ORG Sun Oct 29 15:30:29 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BEE616A49E for ; Sun, 29 Oct 2006 15:30:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE79843D45 for ; Sun, 29 Oct 2006 15:30:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9TFUSn1078289 for ; Sun, 29 Oct 2006 15:30:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9TFUSIp078287; Sun, 29 Oct 2006 15:30:28 GMT (envelope-from gnats) Date: Sun, 29 Oct 2006 15:30:28 GMT Message-Id: <200610291530.k9TFUSIp078287@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: docs/104909: commit references a PR X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Oct 2006 15:30:29 -0000 The following reply was made to PR docs/104909; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/104909: commit references a PR Date: Sun, 29 Oct 2006 15:22:40 +0000 (UTC) pav 2006-10-29 15:22:35 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: A new section on using Lua PR: docs/104909 Submitted by: alepulver Revision Changes Path 1.763 +544 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Sun Oct 29 16:44:17 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AFC516A417; Sun, 29 Oct 2006 16:44:17 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7CA743D80; Sun, 29 Oct 2006 16:44:16 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (maxim@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9TGiG1U085203; Sun, 29 Oct 2006 16:44:16 GMT (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9TGiGYd085199; Sun, 29 Oct 2006 16:44:16 GMT (envelope-from maxim) Date: Sun, 29 Oct 2006 16:44:16 GMT From: Maxim Konovalov Message-Id: <200610291644.k9TGiGYd085199@freefall.freebsd.org> To: ryany@pobox.com, maxim@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/58710: killpg(2) contains an error regarding sending SIGCONT X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Oct 2006 16:44:17 -0000 Synopsis: killpg(2) contains an error regarding sending SIGCONT State-Changed-From-To: patched->closed State-Changed-By: maxim State-Changed-When: Sun Oct 29 16:43:59 UTC 2006 State-Changed-Why: Merged to RELENG_6. http://www.freebsd.org/cgi/query-pr.cgi?pr=58710 From owner-freebsd-doc@FreeBSD.ORG Sun Oct 29 17:18:53 2006 Return-Path: X-Original-To: doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E60316A415 for ; Sun, 29 Oct 2006 17:18:53 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4C6A43D5C for ; Sun, 29 Oct 2006 17:18:52 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by nf-out-0910.google.com with SMTP id p77so1962226nfc for ; Sun, 29 Oct 2006 09:18:51 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=AJ8s+tDB+EC8SAX3BT5SpHfqGfIIVBkdRHcJjaQMTUPAFXR/U+chekLZreTTrFgk8snztyUnTRsUnEnyD3KpnToFO06d/2CgW+K+kQmK4fN3uUJKycJQBr2npENOvyRt2FriG3YQSzCfXK+W36uG2OHIiQ6wU/1Di6u3p6wZmL8= Received: by 10.78.151.15 with SMTP id y15mr3356238hud; Sun, 29 Oct 2006 09:18:50 -0800 (PST) Received: by 10.78.167.16 with HTTP; Sun, 29 Oct 2006 09:18:50 -0800 (PST) Message-ID: Date: Sun, 29 Oct 2006 20:18:50 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Yar Tikhiy" In-Reply-To: <20061015173531.GB31717@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061015173531.GB31717@comp.chem.msu.su> X-Google-Sender-Auth: bf909fabb85c09cf Cc: doc@FreeBSD.org Subject: Re: New article X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Oct 2006 17:18:53 -0000 On 10/15/06, Yar Tikhiy wrote: > Hi folks, Great article, thanks! How about -eval "${rcvar}=\${${rcvar}:-'NO'}" +eval : \${${rcvar}='NO'} (a little more concise/readable; does not override explicit null value, which might not be valid, but should probably be respected all the same) Thanks! From owner-freebsd-doc@FreeBSD.ORG Mon Oct 30 07:36:50 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABC3916A40F; Mon, 30 Oct 2006 07:36:50 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D2B943D45; Mon, 30 Oct 2006 07:36:50 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9U7ao3K067159; Mon, 30 Oct 2006 07:36:50 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9U7aogJ067155; Mon, 30 Oct 2006 07:36:50 GMT (envelope-from remko) Date: Mon, 30 Oct 2006 07:36:50 GMT From: Remko Lodder Message-Id: <200610300736.k9U7aogJ067155@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-doc@FreeBSD.org, remko@FreeBSD.org Cc: Subject: Re: docs/104706: [patch] books/handbook/mail/chapter.sgml X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Oct 2006 07:36:50 -0000 Synopsis: [patch] books/handbook/mail/chapter.sgml Responsible-Changed-From-To: freebsd-doc->remko Responsible-Changed-By: remko Responsible-Changed-When: Mon Oct 30 07:36:49 UTC 2006 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=104706 From owner-freebsd-doc@FreeBSD.ORG Mon Oct 30 11:06:20 2006 Return-Path: X-Original-To: doc@hub.freebsd.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3128216A412 for ; Mon, 30 Oct 2006 11:06:20 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD1F243D58 for ; Mon, 30 Oct 2006 11:06:19 +0000 (GMT) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9UB6JFR084942 for ; Mon, 30 Oct 2006 11:06:19 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9UB6IYx084938 for DOC; Mon, 30 Oct 2006 11:06:18 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 30 Oct 2006 11:06:18 GMT Message-Id: <200610301106.k9UB6IYx084938@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Cc: Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Oct 2006 11:06:20 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. r - repocopy The resolution of the problem report is dependent on a repocopy operation within the CVS repository which is awaiting completion. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/27605 doc [patch] Cross-document references () s docs/35678 doc docproj Makefiles for web are broken for paths with sp o docs/60679 doc [patch] pthread(3): pthreads documentation does not de o docs/61605 doc [feature request] Improve documentation for i386 disk o docs/78357 doc getaddrinfo(3)'s AI_ADDRCONFIG not documented o docs/80843 doc [patch] psm(4): Suggested fix for psm0 / handle driver o docs/84932 doc new document: printing with an Epson ALC-3000N on Free o docs/98115 doc Missing parts after rendering handbook to RTF format 8 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- s docs/20028 doc ASCII docs should reflect tags in the sourc o docs/24786 doc missing FILES descriptions in sa(4) o docs/26286 doc *printf(3) etc should gain format string warnings a docs/30008 doc [patch] French softupdates document should be translat s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o docs/35222 doc [patch] getmsg.cgi: mailing list archive URL regexp su o docs/35608 doc mt(1) page uses "setmark" without explanation. o docs/35609 doc mt(1) page needs explanation of "long erase". o docs/35612 doc ps(1) page "state" description doesn't mention "spread o docs/35953 doc hosts.equiv(5) manual is confusing or wrong about host o docs/36432 doc Proposal for doc/share/mk: make folded books using psu o docs/36449 doc symlink(7) manual doesn't mention trailing slash, etc. o docs/38620 doc suggestion: minor rework of question in Committers Gui o docs/38982 doc [patch] developers-handbook/Jail fix o docs/39348 doc diskless(8): note that kenv fetch of hostname requires o docs/39530 doc access(2) man page has unnecessarily broad warning o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o docs/41089 doc pax(1) -B option does not mention interaction with -z o docs/41807 doc [patch] natd(8): document natd -punch_fw "bug" o docs/43823 doc [PATCH] update to environ(7) manpage o docs/43941 doc document the Rationale for Upgrade Sequence (e.g. why o docs/44074 doc [patch] ln(1) manual clarifications o docs/46196 doc [patch] menu_format(3): Missing return value in (set_) o docs/46295 doc please add information to Nvi recovery email o docs/47594 doc [PATCH] passwd(5) incorrectly states allowed username o docs/47818 doc [patch] ln(1) manpage is confusing o docs/48101 doc [patch] add documentation on the fixit disk to the FAQ o docs/48980 doc [patch] nsgmls -s errors and sect. 3.2.1 of the fdp-pr o docs/50211 doc [PATCH] doc.docbook.mk: fix textfile creation o docs/50573 doc resolver(3): return values for res_query/res_search/re o docs/51891 doc DIAGNOSTICS in ed(4) driver manpage don't match realit o docs/52071 doc [PATCH] Add more information about soft updates into a o docs/53575 doc Change to Handbook Section 20.9 (SMTP Authentication) o docs/53596 doc Updates to mt(1) manual page o docs/54879 doc jot(1) -r description s docs/55482 doc document the fact that DUMP has access to block device o docs/57388 doc [patch] INSTALL.TXT enhancement: mention ok prompt o docs/57926 doc [patch] amd.conf(5) poorly format as it has both man(7 o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o docs/59477 doc Outdated Info Documents at http://docs.freebsd.org/inf o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o docs/61070 doc handbook: Installation docs misleading: PResizer isn' o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o docs/61667 doc Obsolete documentation on FreeBSD PnP o docs/61859 doc ddb(4): Incorrect informaiton about trace command ddb o docs/62412 doc one of the diskless boot methods described in the Hand o docs/63215 doc Wrong prototypes in mi_switch(9) (ref docs/24311) o docs/64807 doc Handbook section on NAT incomplete o docs/65477 doc release notes: installation instruction fail to mentio o docs/66265 doc [patch] Document what -f and LD_TRACE_LOADED_OBJECTS_F o docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_options instead o docs/66483 doc [patch] share/man/man4/csa.4 grammar nits f docs/67806 doc [patch] Let 5.x users know how to boot into single use o docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not document POSI o docs/70217 doc [patch] Suggested rewrite of docproj/sgml.sgml for cla f docs/71980 doc Handbook says that no other software is known to be ab o docs/73583 doc [patch] add missing instructions to ndis(4) o docs/73679 doc FreeBSD 5.3 Release notes mention new natd(8) function o docs/74612 doc [patch] updates to the glossary o docs/75577 doc [patch] typos in man3 manual pages, login_class.3, log o docs/75865 doc comments on "backup-basics" in handbook o docs/75995 doc hcreate(3) documentation(?) bug o docs/76094 doc handbook: incorrect statement about partition d o docs/76333 doc [patch] ferror(3): EOF indicator can be cleared by not o docs/76515 doc [patch] misleading use of make -j flag in handbook o docs/77087 doc [patch] the bootvinum script given in the vinum articl o docs/78041 doc [patch] docs for md(4) need further explanation of typ o docs/78138 doc [patch] Error in pre-installation section of installat o docs/78240 doc [patch] handbook: replace with aroun f docs/78440 doc POSIX semaphores don't work by default in 5.3-STABLE o docs/78480 doc Networked printer setup unnecessarily complex in handb o docs/78520 doc error in man(5) lpd.conf, lpd.perms pages, and man(8) o docs/78915 doc rfork(2)'s RFTHREAD is not documented o docs/82595 doc 25.5.3 Configuring a bridge section of the handbook ne o docs/83621 doc [patch]: Minor omissions in /usr/src/UPDATING p docs/84101 doc [patch] mt(1) manpage has erroneous synopsis, etc. o docs/84154 doc Handbook somewhat off in use of /boot/kernel.old o docs/84265 doc [patch] chmod(1) manpage omits implication of setting p docs/84266 doc [patch] security(8) manpage should have init(8)'s list o docs/84267 doc [patch] chflags(1) manual doesn't say it's affected by o docs/84268 doc chmod(1) manpage's BUGS entry is either wrong or too c o docs/84317 doc fdp-primer doesn't show class=USERNAME distinctively o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi o docs/84806 doc mdoc(7) manpage has section ordering problems o docs/84955 doc [patch] mdoc(7) manpage should mention missing documen o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/85100 doc NOTES: ICH audio device support statement is ambiguous o docs/85118 doc [PATCH] opiekey(1) references non-existing opiegen(1) o docs/85128 doc loader.conf(5) autoboot_delay incompletly described o docs/85186 doc [patch] ktrace(1) manpage doesn't warn about need for o docs/85187 doc [patch] find(1) manpage missing block info for -ls o docs/85243 doc Missing icmp related abbreviations for pf.conf(5) in i o docs/86342 doc bikeshed entry of Handbook is wrong o docs/86733 doc [patch] handbook: add using kldload as an alternative o docs/87857 doc ifconfig(8) wireless options order matters o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o docs/88477 doc Possible addition to xl(4) manpage, Diagnostics sectio o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o docs/89325 doc [PATCH] Clarification of kbdmap(5), atkbd(4) and kbdco o docs/89492 doc vfs doc: some VOP_*(9) manual pages are outdated with o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o docs/91506 doc ndis(4) man page should be more specific about support o docs/92626 doc jail manpage should mention disabling some periodic sc o docs/93249 doc rewrite of handbook chapter 23 (PPP & SLIP) o docs/93363 doc Handbook 23.11. SMTP-Authentifizierung o docs/94125 doc DGE-530T doesn't work on FreeBSD v6.0 o docs/94625 doc [patch] growfs man page -- document "panic: not enough o docs/95139 doc FAQ to move filesystem to new disk fails: incorrect pe o docs/96207 doc Comments of a sockaddr_un structure could confuse one o docs/97409 doc Incorrect command name in Kerberos section (k5init doe o docs/97939 doc some mistake in man of amq(8) o docs/98941 doc Partitioning resize - only commercial product availabl o docs/98974 doc Missing tunables in loader(8) manpage o docs/99007 doc [patch] misleading nat configuration info o docs/99215 doc Documentation change for sshd_config o docs/99506 doc FreeBSD Handbook addition: IPv6 Server Settings o docs/99845 doc [patch] First introduce porttools to Porter's Handbook o docs/100196 doc man login.conf does explain not "unlimited" o docs/100242 doc sysctl(3) description of KERN_PROC is not correct anym o docs/101464 doc sync u_RU.KOI8-R/articles/portbuild/article.html with o docs/102148 doc The description of which Intel chips have EM64T is out o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o docs/103151 doc Some minor update for using gif(4) o docs/103347 doc Incorrect file summary in devfs(8) f docs/103730 doc [mail-archive]: duplicated file in mail archive o docs/104403 doc man security should mention that the usage of the X Wi o docs/104432 doc No mention of "let" shell builtin in manual pages. o docs/104493 doc [patch] Wrong description in ntp.conf(5) (CURRENT and o docs/104707 doc [fix] manpage: clock_gettime is in time.h instead of s o docs/104767 doc Suggest make diff. between src and ports clearer in CV o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box 131 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Oct 30 12:55:35 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EAB916A553; Mon, 30 Oct 2006 12:55:35 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C5BA43D6A; Mon, 30 Oct 2006 12:55:26 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from freefall.freebsd.org (ru@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9UCtQQ9098424; Mon, 30 Oct 2006 12:55:26 GMT (envelope-from ru@freefall.freebsd.org) Received: (from ru@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9UCtPAE098420; Mon, 30 Oct 2006 12:55:25 GMT (envelope-from ru) Date: Mon, 30 Oct 2006 12:55:25 GMT From: Ruslan Ermilov Message-Id: <200610301255.k9UCtPAE098420@freefall.freebsd.org> To: junsu@m-net.arbornet.org, ru@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/61859: ddb(4): Incorrect informaiton about trace command ddb X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Oct 2006 12:55:35 -0000 Synopsis: ddb(4): Incorrect informaiton about trace command ddb State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Oct 30 12:53:00 UTC 2006 State-Changed-Why: Fixed in 7.0-CURRENT. http://www.freebsd.org/cgi/query-pr.cgi?pr=61859 From owner-freebsd-doc@FreeBSD.ORG Mon Oct 30 13:00:38 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27E5F16A4E1 for ; Mon, 30 Oct 2006 13:00:38 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0C5043D45 for ; Mon, 30 Oct 2006 13:00:37 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9UD0b6f098606 for ; Mon, 30 Oct 2006 13:00:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9UD0b1o098604; Mon, 30 Oct 2006 13:00:37 GMT (envelope-from gnats) Date: Mon, 30 Oct 2006 13:00:37 GMT Message-Id: <200610301300.k9UD0b1o098604@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: docs/61859: commit references a PR X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Oct 2006 13:00:38 -0000 The following reply was made to PR docs/61859; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/61859: commit references a PR Date: Mon, 30 Oct 2006 12:55:38 +0000 (UTC) ru 2006-10-30 12:55:06 UTC FreeBSD src repository Modified files: share/man/man4 ddb.4 Log: The first (optional) argument of the "trace" command is either the process or thread ID. PR: docs/61859 Revision Changes Path 1.41 +5 -5 src/share/man/man4/ddb.4 _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-doc@FreeBSD.ORG Mon Oct 30 21:30:26 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2E2916A40F for ; Mon, 30 Oct 2006 21:30:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8E4C43D5A for ; Mon, 30 Oct 2006 21:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9ULUQS4044108 for ; Mon, 30 Oct 2006 21:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9ULUQH0044107; Mon, 30 Oct 2006 21:30:26 GMT (envelope-from gnats) Date: Mon, 30 Oct 2006 21:30:26 GMT Message-Id: <200610302130.k9ULUQH0044107@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Ruslan Ermilov Cc: Subject: Re: docs/98974: Missing tunables in loader(8) manpage X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ruslan Ermilov List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Oct 2006 21:30:27 -0000 The following reply was made to PR docs/98974; it has been noted by GNATS. From: Ruslan Ermilov To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/98974: Missing tunables in loader(8) manpage Date: Tue, 31 Oct 2006 00:27:23 +0300 For the record. The src/tools/tools/sysdoc tool has nothing to do with loader(8) tunables; instead, a tool scans the installed kernel for sysctls which are not loader(8) tunables. (Some of the sysctls also have the tunables of the same name, but not necessarily.) Cheers, -- Ruslan Ermilov ru@FreeBSD.org FreeBSD committer From owner-freebsd-doc@FreeBSD.ORG Tue Oct 31 13:59:55 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D497D16A403; Tue, 31 Oct 2006 13:59:55 +0000 (UTC) (envelope-from keramida@freebsd.org) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id E902443D45; Tue, 31 Oct 2006 13:59:54 +0000 (GMT) (envelope-from keramida@freebsd.org) Received: from gothmog.pc (host5.bedc.ondsl.gr [62.103.39.229]) (authenticated bits=128) by igloo.linux.gr (8.13.8/8.13.8/Debian-2) with ESMTP id k9VDxeGX023791 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 31 Oct 2006 15:59:46 +0200 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.8/8.13.8) with ESMTP id k9VE0EGq091141; Tue, 31 Oct 2006 16:00:15 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from giorgos@localhost) by gothmog.pc (8.13.8/8.13.8/Submit) id k9VE0EST091140; Tue, 31 Oct 2006 16:00:14 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Tue, 31 Oct 2006 16:00:14 +0200 From: Giorgos Keramidas To: Cristian KLEIN Message-ID: <20061031140014.GA90986@gothmog.pc> References: <453CD37B.3080909@net.utcluj.ro> <453D533F.9020301@FreeBSD.org> <453DC6CA.60304@net.utcluj.ro> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mP3DRpeJDSE+ciuQ" Content-Disposition: inline In-Reply-To: <453DC6CA.60304@net.utcluj.ro> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.634, required 5, AWL -0.24, BAYES_00 -2.60, DNS_FROM_RFC_ABUSE 0.20, UNPARSEABLE_RELAY 0.00) X-Hellug-MailScanner-From: keramida@freebsd.org X-Spam-Status: No Cc: freebsd-doc@freebsd.org, Doug Barton Subject: Re: Want to help with handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Oct 2006 13:59:55 -0000 --mP3DRpeJDSE+ciuQ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On 2006-10-24 10:54, Cristian KLEIN wrote: > Thanks. I was also interested whether these topics are of value > to the handbook. Some of the above-mentioned things are close > to "hacking". That's ok. Our Handbook also contains chapters about system disks, partitioning, installation and other tasks which the every-day user does not really have to deal with, which are moderately or even very advanced (i.e. setting up fairly strict firewall rulesets). > For example, I like to swap ipfw and ipnat in /etc/rc.d/*. Should this > be mentioned in the handbook too? Well written content and on topic content is *always* welcome :) We also have an article about rc-scripting now, thanks to Yar Tikhiy. Maybe it's a good idea to expand that article about changing the order of rc.d scripts, and referencing it from the Handbook? Regards, Giorgos --mP3DRpeJDSE+ciuQ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFR1bu1g+UGjGGA7YRAooKAJwMdnFYnxCbLNZPULPWXOlULgb1XwCeIATh 2bWzzfTFfkpWzJCUFwsFi2Q= =jSRS -----END PGP SIGNATURE----- --mP3DRpeJDSE+ciuQ-- From owner-freebsd-doc@FreeBSD.ORG Tue Oct 31 14:02:11 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A079E16A415; Tue, 31 Oct 2006 14:02:11 +0000 (UTC) (envelope-from keramida@freebsd.org) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 116C043D60; Tue, 31 Oct 2006 14:01:58 +0000 (GMT) (envelope-from keramida@freebsd.org) Received: from gothmog.pc (host5.bedc.ondsl.gr [62.103.39.229]) (authenticated bits=128) by igloo.linux.gr (8.13.8/8.13.8/Debian-2) with ESMTP id k9VE1nNj023944 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 31 Oct 2006 16:01:49 +0200 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.8/8.13.8) with ESMTP id k9VE2LpU091159; Tue, 31 Oct 2006 16:02:23 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from giorgos@localhost) by gothmog.pc (8.13.8/8.13.8/Submit) id k9VE2L51091158; Tue, 31 Oct 2006 16:02:21 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Tue, 31 Oct 2006 16:02:21 +0200 From: Giorgos Keramidas To: Cristian KLEIN Message-ID: <20061031140221.GB90986@gothmog.pc> References: <453CD37B.3080909@net.utcluj.ro> <453D533F.9020301@FreeBSD.org> <453DC6CA.60304@net.utcluj.ro> <20061024133401.51158add.trhodes@FreeBSD.org> <453E7437.1080300@net.utcluj.ro> <20061024180748.4adc6f12.trhodes@FreeBSD.org> <453E9E7B.4050801@net.utcluj.ro> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cvVnyQ+4j833TQvp" Content-Disposition: inline In-Reply-To: <453E9E7B.4050801@net.utcluj.ro> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.634, required 5, AWL -0.24, BAYES_00 -2.60, DNS_FROM_RFC_ABUSE 0.20, UNPARSEABLE_RELAY 0.00) X-Hellug-MailScanner-From: keramida@freebsd.org X-Spam-Status: No Cc: Tom Rhodes , freebsd-doc@freebsd.org, dougb@freebsd.org Subject: Re: Want to help with handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Oct 2006 14:02:11 -0000 --cvVnyQ+4j833TQvp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2006-10-25 02:15, Cristian KLEIN wrote: > Talking about /etc/rc.d/ipfw, when using dummynet and ipfw, both > compiled as modules, /etc/rc.d/ipfw is unable to load "pipe"s in the > ruleset, because there is no place dummynet is loaded. On the contrary, > loading dummynet also loads ipfw. >=20 > Few people encounter this problem, as dummynet is usually compiled into > the kernel. I solved the problem by changing "kldload ipfw" with > "kldload dummynet" in /etc/rc.d/ipfw. I wouldn't know a general way of > solving this problem. Perhaps ipfw should load dummynet when > encountaring a "pipe" rule? AFAIK, a good and general way of solving this is to load dummynet from `/boot/loader.conf', so it will be available when the `/etc/rc.d/ipfw' script fires up. --cvVnyQ+4j833TQvp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFR1dt1g+UGjGGA7YRAn9IAJsEgsQOpwDro+ZigT/nFNk+3lCGqwCgxTnl xD8WEM6hMqXYQUQKWRoQcpw= =wCmG -----END PGP SIGNATURE----- --cvVnyQ+4j833TQvp-- From owner-freebsd-doc@FreeBSD.ORG Wed Nov 1 09:10:12 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95D3A16A47B for ; Wed, 1 Nov 2006 09:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 780D943D5F for ; Wed, 1 Nov 2006 09:10:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA19ABn8072661 for ; Wed, 1 Nov 2006 09:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA19ABs0072656; Wed, 1 Nov 2006 09:10:11 GMT (envelope-from gnats) Resent-Date: Wed, 1 Nov 2006 09:10:11 GMT Resent-Message-Id: <200611010910.kA19ABs0072656@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, dawnshade Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEB8516A5AB for ; Wed, 1 Nov 2006 09:05:42 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68D8C43D55 for ; Wed, 1 Nov 2006 09:05:42 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id kA195g6L058409 for ; Wed, 1 Nov 2006 09:05:42 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id kA195gR7058408; Wed, 1 Nov 2006 09:05:42 GMT (envelope-from nobody) Message-Id: <200611010905.kA195gR7058408@www.freebsd.org> Date: Wed, 1 Nov 2006 09:05:42 GMT From: dawnshade To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: docs/105000: fix in hangbook chapter "14.10 VPN over IPsec" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Nov 2006 09:10:12 -0000 >Number: 105000 >Category: docs >Synopsis: fix in hangbook chapter "14.10 VPN over IPsec" >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 01 09:10:10 GMT 2006 >Closed-Date: >Last-Modified: >Originator: dawnshade >Release: 6.1-RELEASE >Organization: - >Environment: FreeBSD mail.*.ru 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun Oct 29 10:35:13 MSK 2006 root@mail.*.ru:/usr/src/sys/i386/compile/1 i386 >Description: In handbook, chapter "14.10 VPN over IPsec" wrong described ifconfig: "ifconfig tunnel gif0 ....", but on real machine this not working. must be "ifconfig gif0 tunnel ....". man ifconfig says the same: ifconfig [-L] [-k] [-m] interface [create] [address_family] [address [dest_address]] [parameters] ...skipped... tunnel src_addr dest_addr Configure the physical source and destination address for IP tun- nel interfaces. The arguments src_addr and dest_addr are inter- preted as the outer source/destination for the encapsulating IPv4/IPv6 header. >How-To-Repeat: try to setup tunnel following instructions in ch 14.10 >Fix: replace "ifconfig tunnel gif0 ...." to "ifconfig gif0 tunnel ....". >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Nov 1 09:39:50 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84BF216A403; Wed, 1 Nov 2006 09:39:50 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4332643D45; Wed, 1 Nov 2006 09:39:50 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA19dobn075955; Wed, 1 Nov 2006 09:39:50 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA19dod2075951; Wed, 1 Nov 2006 09:39:50 GMT (envelope-from remko) Date: Wed, 1 Nov 2006 09:39:50 GMT From: Remko Lodder Message-Id: <200611010939.kA19dod2075951@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-doc@FreeBSD.org, remko@FreeBSD.org Cc: Subject: Re: docs/105000: fix in hangbook chapter "14.10 VPN over IPsec" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Nov 2006 09:39:50 -0000 Synopsis: fix in hangbook chapter "14.10 VPN over IPsec" Responsible-Changed-From-To: freebsd-doc->remko Responsible-Changed-By: remko Responsible-Changed-When: Wed Nov 1 09:39:49 UTC 2006 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=105000 From owner-freebsd-doc@FreeBSD.ORG Wed Nov 1 09:50:01 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9734C16A47B; Wed, 1 Nov 2006 09:50:01 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30F0643D55; Wed, 1 Nov 2006 09:50:01 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from freefall.freebsd.org (danger@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA19o1AH077170; Wed, 1 Nov 2006 09:50:01 GMT (envelope-from danger@freefall.freebsd.org) Received: (from danger@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA19o0SO077166; Wed, 1 Nov 2006 09:50:00 GMT (envelope-from danger) Date: Wed, 1 Nov 2006 09:50:00 GMT From: Daniel Gerzo Message-Id: <200611010950.kA19o0SO077166@freefall.freebsd.org> To: danger@FreeBSD.org, freebsd-doc@FreeBSD.org, danger@FreeBSD.org Cc: Subject: Re: docs/104707: [fix] manpage: clock_gettime is in time.h instead of sys/time.h X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Nov 2006 09:50:01 -0000 Synopsis: [fix] manpage: clock_gettime is in time.h instead of sys/time.h Responsible-Changed-From-To: freebsd-doc->danger Responsible-Changed-By: danger Responsible-Changed-When: Wed Nov 1 09:49:39 UTC 2006 Responsible-Changed-Why: I will handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=104707 From owner-freebsd-doc@FreeBSD.ORG Wed Nov 1 09:50:35 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13C9D16A5F0 for ; Wed, 1 Nov 2006 09:50:35 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AA6143D6E for ; Wed, 1 Nov 2006 09:50:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA19oUR4077283 for ; Wed, 1 Nov 2006 09:50:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA19oUbp077282; Wed, 1 Nov 2006 09:50:30 GMT (envelope-from gnats) Date: Wed, 1 Nov 2006 09:50:30 GMT Message-Id: <200611010950.kA19oUbp077282@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Daniel Gerzo Cc: Subject: Re: docs/104767: Suggest make diff. between src and ports clearer in CVSUP manual pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Gerzo List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Nov 2006 09:50:35 -0000 The following reply was made to PR docs/104767; it has been noted by GNATS. From: Daniel Gerzo To: bug-followup@FreeBSD.org, paulb@pirc.co.uk Cc: Subject: Re: docs/104767: Suggest make diff. between src and ports clearer in CVSUP manual pages Date: Wed, 1 Nov 2006 10:46:08 +0100 Hello bug-followup, I agree with Tom, it's well described. -- Best regards, Daniel mailto:danger@FreeBSD.org From owner-freebsd-doc@FreeBSD.ORG Wed Nov 1 10:38:20 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 597DA16A415; Wed, 1 Nov 2006 10:38:20 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03D8943D49; Wed, 1 Nov 2006 10:38:20 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA1AcJdK082234; Wed, 1 Nov 2006 10:38:19 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA1AcJ1i082230; Wed, 1 Nov 2006 10:38:19 GMT (envelope-from remko) Date: Wed, 1 Nov 2006 10:38:19 GMT From: Remko Lodder Message-Id: <200611011038.kA1AcJ1i082230@freefall.freebsd.org> To: loader@freebsdmall.com, remko@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/103151: Some minor update for using gif(4) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Nov 2006 10:38:20 -0000 Synopsis: Some minor update for using gif(4) State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Wed Nov 1 10:38:19 UTC 2006 State-Changed-Why: The information was corrected via a set of different changes. The final change will be done later today. Thanks for submitting the entry, we really appriciate that. http://www.freebsd.org/cgi/query-pr.cgi?pr=103151 From owner-freebsd-doc@FreeBSD.ORG Wed Nov 1 19:48:16 2006 Return-Path: X-Original-To: docs@freebsd.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3407916A618 for ; Wed, 1 Nov 2006 19:48:16 +0000 (UTC) (envelope-from prvs=julian=453a8fdc9@elischer.org) Received: from a50.ironport.com (a50.ironport.com [63.251.108.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD28443D53 for ; Wed, 1 Nov 2006 19:48:15 +0000 (GMT) (envelope-from prvs=julian=453a8fdc9@elischer.org) Received: from unknown (HELO [192.168.2.4]) ([10.251.60.34]) by a50.ironport.com with ESMTP; 01 Nov 2006 11:48:06 -0800 Message-ID: <4548F9F6.7030905@elischer.org> Date: Wed, 01 Nov 2006 11:48:06 -0800 From: Julian Elischer User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Marcel Moolenaar References: <4548EB40.1060004@elischer.org> <3A3B0453-B3F9-40E4-9FB9-5F27306FE760@mac.com> In-Reply-To: <3A3B0453-B3F9-40E4-9FB9-5F27306FE760@mac.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: docs@freebsd.org Subject: Re: marcel, DDB/GDB/KDB? X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Nov 2006 19:48:16 -0000 Marcel Moolenaar wrote: > > On Nov 1, 2006, at 10:45 AM, Julian Elischer wrote: > >> marcel, jhb suggested I ask you the correct way to revert to >> ddb once entering gdb? > > There's no correct way as far as I know. We (the collective) haven't > come up with anything yet. It should be easy enough to add a command > to kgdb that switches the KDB backend, by updating kernel memory. A > more generic approach would be to have kgdb set a function pointer of > a function that is to be called before the kernel resumes. This could > be a function that switches the KDB backend or something else. > >> also, what is the reason for kgdb? > > I created kgdb to avoid having a lot of gdb patches, which would make > future imports of GDB hard. By using a binary that links against libgdb, > it's possible to customize and implement support for kernel debugging > without having to put that knowledge into the core GDB code. > > For example, with kgdb it's easy to debug a crashed kernel. You only > have to specify the vmcore file number with the -n option and kgdb > will find the corresponding kernel. You cannot have this level of > user-friendliness without major patches if you don't have a binary. > > The thread debugging support that David Xu implemented is a perfect > example of why we should not patch GDB: We cannot upgrade GDB at the > moment without also breaking thread debugging. As such, we're in the > same corner we were in before I upgraded GDB... this should be in the docs somewhere.. :-) BTW I like to run xgdb when debugging the kernel as a front-end to gdb but it needs to be fixed to handle kgdb whenever I try it :-) rarely look at crashdumps. I usually end up using live remote debugging. This seems a bit 'delicate' at the moment. > > FYI, > From owner-freebsd-doc@FreeBSD.ORG Wed Nov 1 21:15:22 2006 Return-Path: X-Original-To: doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54E8E16A4A7 for ; Wed, 1 Nov 2006 21:15:22 +0000 (UTC) (envelope-from bill@accustaffing.com) Received: from accustaffing.com (accustaffing.com [64.83.75.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0226043D55 for ; Wed, 1 Nov 2006 21:15:20 +0000 (GMT) (envelope-from bill@accustaffing.com) Received: from nonehps2itmxob (bill.accustaffing.com [64.83.75.167]) by accustaffing.com (8.13.8/8.13.3) with ESMTP id kA1LFhAi061837 for ; Wed, 1 Nov 2006 16:15:44 -0500 (EST) (envelope-from bill@accustaffing.com) Message-Id: <200611012115.kA1LFhAi061837@accustaffing.com> From: "Bill Damm" To: Date: Wed, 1 Nov 2006 16:13:13 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: Acb9+oq8cr04Q3NCSFCEDD9PnqyhMQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-ACCUStaffing-MailScanner-Information: Please contact the ISP for more information X-ACCUStaffing-MailScanner: Found to be clean X-ACCUStaffing-MailScanner-SpamCheck: not spam (whitelisted), SpamAssassin (score=-1.44, required 3.25, ALL_TRUSTED -1.44) X-ACCUStaffing-MailScanner-From: bill@accustaffing.com Cc: Subject: Hey I have a question about freeBSD X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Nov 2006 21:15:22 -0000 Hello, I've been reading your documentation, and I didn't quite find the solution to my problem, I try installing FreeBSD onto my system and I gets to a point where its installing the operating system, then at 3% it crashes and says "dump device not defined" Could you give me a point in the right direction. Thanks In advance! -- This e-mail and any files transmitted with it are confidential and are intended solely for the use of the individual or entity to which they are addressed. It is not an offer or acceptance, and it is not intended to be all or part of an agreement. This communication may contain material protected by the attorney-client privilege. If you are not the intended recipient or the person responsible for delivering the e-mail to the intended recipient, be advised that you have received this e-mail in error and that any review, use, dissemination, forwarding, printing, or copying of this e-mail is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by return e-mail and delete this e-mail from your system. The sender does not accept liability for any damage caused by any virus transmitted by this e-mail or any errors or omissions in the contents of this message which arise as a result of e-mail transmission. ...Postmaster http://www.accustaffing.com/spam/index.htm This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ACCU-MailScanner http://www.accustaffing.com (The Power In Personnel) From owner-freebsd-doc@FreeBSD.ORG Thu Nov 2 00:02:12 2006 Return-Path: X-Original-To: doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3275616A403 for ; Thu, 2 Nov 2006 00:02:12 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB08C43D7F for ; Thu, 2 Nov 2006 00:02:11 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id kA2027Jc022858 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 1 Nov 2006 19:02:08 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Wed, 1 Nov 2006 19:02:02 -0500 From: Tom Rhodes To: "Bill Damm" Message-Id: <20061101190202.2bb9e09f.trhodes@FreeBSD.org> In-Reply-To: <200611012115.kA1LFhAi061837@accustaffing.com> References: <200611012115.kA1LFhAi061837@accustaffing.com> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: doc@FreeBSD.org Subject: Re: Hey I have a question about freeBSD X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Nov 2006 00:02:12 -0000 On Wed, 1 Nov 2006 16:13:13 -0500 "Bill Damm" wrote: > Hello, > > I've been reading your documentation, and I didn't quite find the solution > to my problem, I try installing FreeBSD onto my system and I gets to a point > where its installing the operating system, then at 3% it crashes and says > "dump device not defined" The "dump device not defined" usually means that debugging information is available but cannot be placed because, well, the device is not configured. Serial console helps here. > > Could you give me a point in the right direction. When exactly do you get "3%" and then fail. Is it during the newfs (format) stage? Or the transfer stage? Have you tried a different CD? Are you using a CD? More information can be of help here. Also, there is a FreeBSD-questions@ mailing list where you might get more help. If you provide a little bit more about your specific case that is. Thanks, > > Thanks In advance! > > > -- > This e-mail and any files transmitted with it are confidential and are > intended solely for the use of the individual or entity to which they are > addressed. It is not an offer or acceptance, and it is not intended to be > all or part of an agreement. This communication may contain material > protected by the attorney-client privilege. If you are not the intended > recipient or the person responsible for delivering the e-mail to the > intended recipient, be advised that you have received this e-mail in error > and that any review, use, dissemination, forwarding, printing, or copying of > this e-mail is strictly prohibited. If you have received this e-mail in > error, please notify the sender immediately by return e-mail and delete this > e-mail from your system. The sender does not accept liability for any damage > caused by any virus transmitted by this e-mail or any errors or omissions in > the contents of this message which arise as a result of e-mail transmission. > > ...Postmaster > > http://www.accustaffing.com/spam/index.htm > > > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > > > ACCU-MailScanner http://www.accustaffing.com (The Power In Personnel) > > > > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" > -- Tom Rhodes From owner-freebsd-doc@FreeBSD.ORG Thu Nov 2 15:33:10 2006 Return-Path: X-Original-To: doc@freebsd.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A440B16A4C9 for ; Thu, 2 Nov 2006 15:33:10 +0000 (UTC) (envelope-from sbaskinger@lumeta.com) Received: from MAIL.corp.lumeta.com (h65-246-245-23.lumeta.com [65.246.245.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2307643D5F for ; Thu, 2 Nov 2006 15:33:09 +0000 (GMT) (envelope-from sbaskinger@lumeta.com) Received: from [65.246.246.82] ([65.246.246.82]) by MAIL.corp.lumeta.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 2 Nov 2006 10:33:09 -0500 Message-ID: <454A0F6B.1040707@lumeta.com> Date: Thu, 02 Nov 2006 10:31:55 -0500 From: Sam Baskinger Organization: Lumeta Corporation User-Agent: Thunderbird 1.5.0.7 (X11/20060926) MIME-Version: 1.0 To: doc@freebsd.org X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 02 Nov 2006 15:33:09.0277 (UTC) FILETIME=[331CACD0:01C6FE94] Cc: Subject: Freeing Vs Nulling in pam_conv sample. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Nov 2006 15:33:10 -0000 Hey All, I was reading the sample pam_conv as an example and suspect there might be a tiny error at the end of the function converse(..) in the doc "Sample PAM Conversation Function" at URL: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/pam/pam-sample-conv.html At the label "fail" we clear the variable aresp (3 lines from the end), then set *resp to NULL (2 lines from the end) and return a conversation error. My concern is who will free our calloc'ed aresp memory? Hope this helps (and I'm not overlooking something silly). :) Sam -- Lumeta Corporation 732.357.3545 (office) 732.564.0731 (fax) sbaskinger@lumeta.com www.lumeta.com The world's most security conscious organizations rely on Lumeta to find and prioritize what's in IT, so they can manage and secure IT better. Lumeta Corporation 220 Davidson Ave, 4th Floor Somerset, NJ 08873 From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 01:25:12 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCE5E16A412 for ; Fri, 3 Nov 2006 01:25:12 +0000 (UTC) (envelope-from bmah@freebsd.org) Received: from b.mail.sonic.net (b.mail.sonic.net [64.142.19.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8D4143D49 for ; Fri, 3 Nov 2006 01:25:11 +0000 (GMT) (envelope-from bmah@freebsd.org) Received: from [192.168.2.119] (hornet.kitchenlab.org [64.142.31.105]) (authenticated bits=0) by b.mail.sonic.net (8.13.8.Beta0-Sonic/8.13.7) with ESMTP id kA31PBCJ022790 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 2 Nov 2006 17:25:11 -0800 Message-ID: <454A9A72.4050005@freebsd.org> Date: Thu, 02 Nov 2006 17:25:06 -0800 From: "Bruce A. Mah" User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: freebsd-doc@freebsd.org X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigB08DF1CB04378A479F7BF508" Subject: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 01:25:12 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigB08DF1CB04378A479F7BF508 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable This is a weird problem I ran into today. Basically I was trying to do a "make install" from the top of the doc tree and it seemed to be taking a *really* long time. When I looked at the output from make, it seemed to be iterating multiple times over the tree. To see the problem, chdir to the top of a checked-out doc/ tree (I'm on RELENG_6 if that's relevant) and do: % make -n install If you look at the commands that would get executed, it looks like we recurse twice into each of the language subdirectories...first we hit every subdirectory with some commands like this: echo "=3D=3D=3D> en_US.ISO8859-1" cd /usr/doc/en_US.ISO8859-1 && make install DIRPRFX=3Den_US.ISO8859-1/ Then we do a big loop over all of the subdirectories like this: for entry in en_US.ISO8859-1 bn_BD.ISO10646-1 da_DK.ISO8859-1 de_DE.ISO8859-1 el_GR.ISO8859-7 es_ES.ISO8859-1 fr_FR.ISO8859-1 it_IT.ISO8859-15 ja_JP.eucJP nl_NL.ISO8859-1 pl_PL.ISO8859-2 pt_BR.ISO8859-1 ru_RU.KOI8-R sr_YU.ISO8859-2 tr_TR.ISO8859-9 zh_CN.GB2312 zh_TW.Big5; do if test -d /usr/doc/${entry}.i386; then echo "=3D=3D=3D> ${entry}.i386 (install)"; edir=3D${entry}.i386; cd /usr/doc/${edir}; else echo "=3D=3D=3D> $entry (install)"; edir=3D${en= try}; cd /usr/doc/${edir}; fi; make install DIRPRFX=3D$edir/; done If make insists on iterating over each directory of the tree twice every time it gets to it, then with our three-level doc tree hierarchy, the files for every document get installed to the target directory eight times. :-( The first set of commands above is defined by the _SUBDIRUSE target in doc.subdir.mk. The loop is defined in bsd.subdir.mk, which gets included by doc.subdir.mk via bsd.obj.mk. The attached patch removes the iteration over subdirectories in doc.subdir.mk and just relies on bsd.subdir.mk to handle subdirectories. This seems to produce better behavior but I'm not sure if it's correct. Any comments? Bruce. PS. I'm also wondering how long this problem has existed. :-p There don't appear to have been any changes in this area since last year. --------------enigB08DF1CB04378A479F7BF508 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFSpp22MoxcVugUsMRAuCUAKDYA+iJ9BMdj8sgZ6AH1S1Ka2mjnQCglTzo QrIcJqlPJkDgwENvLykz8AU= =ylpK -----END PGP SIGNATURE----- --------------enigB08DF1CB04378A479F7BF508-- From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 02:42:01 2006 Return-Path: X-Original-To: freebsd-doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8356316A415; Fri, 3 Nov 2006 02:42:01 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1220843D4C; Fri, 3 Nov 2006 02:42:00 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id kA32fw8J030934 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 2 Nov 2006 21:41:59 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Thu, 2 Nov 2006 21:41:51 -0500 From: Tom Rhodes To: "Bruce A. Mah" Message-Id: <20061102214151.273c4ef8.trhodes@FreeBSD.org> In-Reply-To: <454A9A72.4050005@freebsd.org> References: <454A9A72.4050005@freebsd.org> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-doc@FreeBSD.org Subject: Re: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 02:42:01 -0000 On Thu, 02 Nov 2006 17:25:06 -0800 "Bruce A. Mah" wrote: > This is a weird problem I ran into today. Basically I was trying to do > a "make install" from the top of the doc tree and it seemed to be taking > a *really* long time. When I looked at the output from make, it seemed > to be iterating multiple times over the tree. > > To see the problem, chdir to the top of a checked-out doc/ tree (I'm on > RELENG_6 if that's relevant) and do: > > % make -n install > > If you look at the commands that would get executed, it looks like we > recurse twice into each of the language subdirectories...first we hit > every subdirectory with some commands like this: > > echo "===> en_US.ISO8859-1" > cd /usr/doc/en_US.ISO8859-1 && make install DIRPRFX=en_US.ISO8859-1/ > > Then we do a big loop over all of the subdirectories like this: > > for entry in en_US.ISO8859-1 bn_BD.ISO10646-1 da_DK.ISO8859-1 > de_DE.ISO8859-1 el_GR.ISO8859-7 es_ES.ISO8859-1 fr_FR.ISO8859-1 > it_IT.ISO8859-15 ja_JP.eucJP nl_NL.ISO8859-1 pl_PL.ISO8859-2 > pt_BR.ISO8859-1 ru_RU.KOI8-R sr_YU.ISO8859-2 tr_TR.ISO8859-9 > zh_CN.GB2312 zh_TW.Big5; do if test -d /usr/doc/${entry}.i386; then > echo "===> ${entry}.i386 (install)"; edir=${entry}.i386; cd > /usr/doc/${edir}; else echo "===> $entry (install)"; edir=${entry}; > cd /usr/doc/${edir}; fi; make install DIRPRFX=$edir/; done > > If make insists on iterating over each directory of the tree twice every > time it gets to it, then with our three-level doc tree hierarchy, the > files for every document get installed to the target directory eight > times. :-( > > The first set of commands above is defined by the _SUBDIRUSE target in > doc.subdir.mk. The loop is defined in bsd.subdir.mk, which gets > included by doc.subdir.mk via bsd.obj.mk. > > The attached patch removes the iteration over subdirectories in > doc.subdir.mk and just relies on bsd.subdir.mk to handle subdirectories. > This seems to produce better behavior but I'm not sure if it's correct. > Any comments? I can't find a patch in this email. :( But I do think a lot of our build needs re-written, the problem is where to start and what do we want to accomplish. -- Tom Rhodes From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 03:18:12 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17DA116A407; Fri, 3 Nov 2006 03:18:12 +0000 (UTC) (envelope-from bmah@freebsd.org) Received: from b.mail.sonic.net (b.mail.sonic.net [64.142.19.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75DBD43D55; Fri, 3 Nov 2006 03:18:11 +0000 (GMT) (envelope-from bmah@freebsd.org) Received: from [192.168.2.119] (hornet.kitchenlab.org [64.142.31.105]) (authenticated bits=0) by b.mail.sonic.net (8.13.8.Beta0-Sonic/8.13.7) with ESMTP id kA33IB6B009054 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 2 Nov 2006 19:18:11 -0800 Message-ID: <454AB4ED.4090109@freebsd.org> Date: Thu, 02 Nov 2006 19:18:05 -0800 From: "Bruce A. Mah" User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Tom Rhodes References: <454A9A72.4050005@freebsd.org> <20061102214151.273c4ef8.trhodes@FreeBSD.org> In-Reply-To: <20061102214151.273c4ef8.trhodes@FreeBSD.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig8553D63E5B65C97583003746" Cc: freebsd-doc@freebsd.org Subject: Re: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 03:18:12 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig8553D63E5B65C97583003746 Content-Type: multipart/mixed; boundary="------------030303050206020700080407" This is a multi-part message in MIME format. --------------030303050206020700080407 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable If memory serves me right, Tom Rhodes wrote: > I can't find a patch in this email. :( >=20 > But I do think a lot of our build needs re-written, the problem > is where to start and what do we want to accomplish. Urk...did I forget that? Let's try that again, sorry about that. The change is pretty simple...I just removed _SUBDIRUSE from the dependency line of realinstall. It's not clear to me if there are any other ramifications of this change however. :-p I kind of wish I remembered more about how this stuff worked...I haven't seriously looked at this in like three or four years. Bruce. --------------030303050206020700080407 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="doc.subdir.mk.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename="doc.subdir.mk.diff" Index: doc.subdir.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/cvs/doc/share/mk/doc.subdir.mk,v retrieving revision 1.11 diff -u -r1.11 doc.subdir.mk --- doc.subdir.mk 5 Oct 2005 13:57:35 -0000 1.11 +++ doc.subdir.mk 3 Nov 2006 01:18:30 -0000 @@ -62,7 +62,7 @@ .if !target(install) install: afterinstall symlinks=20 afterinstall: realinstall -realinstall: beforeinstall _SUBDIRUSE +realinstall: beforeinstall .endif =20 package: realpackage symlinks --------------030303050206020700080407-- --------------enig8553D63E5B65C97583003746 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFSrTx2MoxcVugUsMRApU9AJ4m51bjPiYpSjEvkajaHWh2nkHJWgCg642r bB5WPXeRW0u5lLlftgSciFA= =gVR9 -----END PGP SIGNATURE----- --------------enig8553D63E5B65C97583003746-- From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 10:43:17 2006 Return-Path: X-Original-To: freebsd-doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AD2316A407; Fri, 3 Nov 2006 10:43:17 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2FD243D49; Fri, 3 Nov 2006 10:43:16 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id kA3AhFP2033805 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 3 Nov 2006 05:43:15 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Fri, 3 Nov 2006 05:43:09 -0500 From: Tom Rhodes To: "Bruce A. Mah" Message-Id: <20061103054309.3074eb94.trhodes@FreeBSD.org> In-Reply-To: <454AB4ED.4090109@freebsd.org> References: <454A9A72.4050005@freebsd.org> <20061102214151.273c4ef8.trhodes@FreeBSD.org> <454AB4ED.4090109@freebsd.org> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 10:43:17 -0000 On Thu, 02 Nov 2006 19:18:05 -0800 "Bruce A. Mah" wrote: > If memory serves me right, Tom Rhodes wrote: > > > I can't find a patch in this email. :( > > > > But I do think a lot of our build needs re-written, the problem > > is where to start and what do we want to accomplish. > > Urk...did I forget that? Let's try that again, sorry about that. It happens my friend. > > The change is pretty simple...I just removed _SUBDIRUSE from the > dependency line of realinstall. It's not clear to me if there are any > other ramifications of this change however. :-p A quick look I gave, nothing bad in sight ... I reserve the right to be wrong. > > I kind of wish I remembered more about how this stuff worked...I haven't > seriously looked at this in like three or four years. I'm surprised that we haven't noticed this sooner ... -- Tom Rhodes From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 11:09:23 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 844BF16A417; Fri, 3 Nov 2006 11:09:23 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32FFE43D79; Fri, 3 Nov 2006 11:09:23 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA3B9Nx9066353; Fri, 3 Nov 2006 11:09:23 GMT (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA3B9Me5066349; Fri, 3 Nov 2006 11:09:22 GMT (envelope-from trhodes) Date: Fri, 3 Nov 2006 11:09:22 GMT From: Tom Rhodes Message-Id: <200611031109.kA3B9Me5066349@freefall.freebsd.org> To: pfeifer@dbai.tuwien.ac.at, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Cc: Subject: Re: docs/38620: suggestion: minor rework of question in Committers Guide and CVS X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 11:09:23 -0000 Synopsis: suggestion: minor rework of question in Committers Guide and CVS State-Changed-From-To: open->closed State-Changed-By: trhodes State-Changed-When: Fri Nov 3 11:07:12 UTC 2006 State-Changed-Why: Closing, after being a committer for a long time, and the fact that no other committers have mentioned, I feel shows that this change is incorrect. Thanks! Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Fri Nov 3 11:07:12 UTC 2006 Responsible-Changed-Why: Over to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=38620 From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 19:34:50 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 264B816A415 for ; Fri, 3 Nov 2006 19:34:50 +0000 (UTC) (envelope-from sziszi@bsd.hu) Received: from mta05.mail.t-online.hu (mta05.mail.t-online.hu [195.228.240.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20F9743D53 for ; Fri, 3 Nov 2006 19:34:48 +0000 (GMT) (envelope-from sziszi@bsd.hu) Received: from baranyfelhocske.buza.adamsfamily.xx (catv54033C7D.pool.t-online.hu [84.3.60.125]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.t-online.hu (Postfix) with ESMTP for ; Fri, 3 Nov 2006 20:34:46 +0100 (CET) Received: from baranyfelhocske.buza.adamsfamily.xx (localhost [127.0.0.1]) by baranyfelhocske.buza.adamsfamily.xx (8.13.8/8.13.8) with ESMTP id kA3JYfUu002265 for ; Fri, 3 Nov 2006 20:34:41 +0100 (CET) (envelope-from sziszi@bsd.hu) Received: (from sziszi@localhost) by baranyfelhocske.buza.adamsfamily.xx (8.13.8/8.13.8/Submit) id kA3JYfqA002264 for freebsd-doc@freebsd.org; Fri, 3 Nov 2006 20:34:41 +0100 (CET) (envelope-from sziszi@bsd.hu) X-Authentication-Warning: baranyfelhocske.buza.adamsfamily.xx: sziszi set sender to sziszi@bsd.hu using -f Date: Fri, 3 Nov 2006 20:34:41 +0100 From: Szilveszter Adam To: freebsd-doc@freebsd.org Message-ID: <20061103193441.GB1435@baranyfelhocske.buza.adamsfamily.xx> Mail-Followup-To: Szilveszter Adam , freebsd-doc@freebsd.org References: <454A9A72.4050005@freebsd.org> <20061102214151.273c4ef8.trhodes@FreeBSD.org> <454AB4ED.4090109@freebsd.org> <20061103054309.3074eb94.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061103054309.3074eb94.trhodes@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) Subject: Re: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 19:34:50 -0000 Hello guys, On Fri, Nov 03, 2006 at 05:43:09AM -0500, Tom Rhodes wrote: > > I'm surprised that we haven't noticed this sooner ... In fact, I have. It was fairly annoying at the time too, because I had a somewhat slower machine, so it really cost time. Since then, I made it a habit to use the "NO_SUBDIR=yes" env var when installing from the doc tree. This is AFAIR due to the fact that there are really two functions defined in two places (two files) that do the same thing (iterate over the subdirs) but run independently from each-other. (One seems to be in bsd.subdir.mk, the other probably in bsd.subdir.mk, but I am not entirely sure) So, we need to get rid of one of them after a taking a long hard look so that nothing breaks. (The one in doc.subdir.mk seems to be used for building doc packages for the ftp server.) -- Regards: Szilveszter ADAM Budapest Hungary From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 19:53:36 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70D6016A417 for ; Fri, 3 Nov 2006 19:53:36 +0000 (UTC) (envelope-from sziszi@bsd.hu) Received: from mta05.mail.t-online.hu (mta05.mail.t-online.hu [195.228.240.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCA7F43D53 for ; Fri, 3 Nov 2006 19:53:35 +0000 (GMT) (envelope-from sziszi@bsd.hu) Received: from baranyfelhocske.buza.adamsfamily.xx (catv54033C7D.pool.t-online.hu [84.3.60.125]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.t-online.hu (Postfix) with ESMTP for ; Fri, 3 Nov 2006 20:53:32 +0100 (CET) Received: from baranyfelhocske.buza.adamsfamily.xx (localhost [127.0.0.1]) by baranyfelhocske.buza.adamsfamily.xx (8.13.8/8.13.8) with ESMTP id kA3JrSt8003869 for ; Fri, 3 Nov 2006 20:53:28 +0100 (CET) (envelope-from sziszi@bsd.hu) Received: (from sziszi@localhost) by baranyfelhocske.buza.adamsfamily.xx (8.13.8/8.13.8/Submit) id kA3JrS8j003868 for freebsd-doc@freebsd.org; Fri, 3 Nov 2006 20:53:28 +0100 (CET) (envelope-from sziszi@bsd.hu) X-Authentication-Warning: baranyfelhocske.buza.adamsfamily.xx: sziszi set sender to sziszi@bsd.hu using -f Date: Fri, 3 Nov 2006 20:53:28 +0100 From: Szilveszter Adam To: freebsd-doc@freebsd.org Message-ID: <20061103195328.GA3704@baranyfelhocske.buza.adamsfamily.xx> Mail-Followup-To: Szilveszter Adam , freebsd-doc@freebsd.org References: <454A9A72.4050005@freebsd.org> <20061102214151.273c4ef8.trhodes@FreeBSD.org> <454AB4ED.4090109@freebsd.org> <20061103054309.3074eb94.trhodes@FreeBSD.org> <20061103193441.GB1435@baranyfelhocske.buza.adamsfamily.xx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061103193441.GB1435@baranyfelhocske.buza.adamsfamily.xx> User-Agent: Mutt/1.5.13 (2006-08-11) Subject: Re: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 19:53:36 -0000 On Fri, Nov 03, 2006 at 08:34:41PM +0100, Szilveszter Adam wrote: > the subdirs) but run independently from each-other. (One seems to be in > bsd.subdir.mk, the other probably in bsd.subdir.mk, but I am not entirely > sure) Arrrgh, of course I meant bsd.subdir.mk and doc.subdir.mk. I hope it was not too confusing. -- Regards: Szilveszter ADAM Budapest Hungary From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 20:40:33 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B90B16A412 for ; Fri, 3 Nov 2006 20:40:33 +0000 (UTC) (envelope-from bmah@freebsd.org) Received: from a.mail.sonic.net (a.mail.sonic.net [64.142.16.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFBAF43D45 for ; Fri, 3 Nov 2006 20:40:32 +0000 (GMT) (envelope-from bmah@freebsd.org) Received: from [192.168.2.119] (hornet.kitchenlab.org [64.142.31.105]) (authenticated bits=0) by a.mail.sonic.net (8.13.8.Beta0-Sonic/8.13.7) with ESMTP id kA3KeGcR024170 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 3 Nov 2006 12:40:20 -0800 Message-ID: <454BA92F.80100@freebsd.org> Date: Fri, 03 Nov 2006 12:40:15 -0800 From: "Bruce A. Mah" User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Szilveszter Adam , freebsd-doc@freebsd.org References: <454A9A72.4050005@freebsd.org> <20061102214151.273c4ef8.trhodes@FreeBSD.org> <454AB4ED.4090109@freebsd.org> <20061103054309.3074eb94.trhodes@FreeBSD.org> <20061103193441.GB1435@baranyfelhocske.buza.adamsfamily.xx> In-Reply-To: <20061103193441.GB1435@baranyfelhocske.buza.adamsfamily.xx> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig839A155B79B3F6155016C002" Cc: Subject: Re: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 20:40:33 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig839A155B79B3F6155016C002 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable If memory serves me right, Szilveszter Adam wrote: > On Fri, Nov 03, 2006 at 05:43:09AM -0500, Tom Rhodes wrote: >> I'm surprised that we haven't noticed this sooner ... >=20 > In fact, I have. It was fairly annoying at the time too, because I had = a > somewhat slower machine, so it really cost time. I'm glad someone else besides me has seen this. I noticed this on my 1GHz P-III. :-p > Since then, I made it a > habit to use the "NO_SUBDIR=3Dyes" env var when installing from the doc= > tree. This is AFAIR due to the fact that there are really two functions= > defined in two places (two files) that do the same thing (iterate over > the subdirs) but run independently from each-other. (One seems to be in= > bsd.subdir.mk, the other probably in bsd.subdir.mk, but I am not entire= ly One of those "bsd.subdir.mk" should "doc.subdir.mk". > sure) So, we need to get rid of one of them after a taking a long hard > look so that nothing breaks. (The one in doc.subdir.mk seems to be used= > for building doc packages for the ftp server.)=20 Did you take a look at my patch? I don't get rid of the loop in doc.subdir.mk, but I make it not get get invoked by the install target. I think this should leave package building unaffected but I confess to not having tested this. Bruce. --------------enig839A155B79B3F6155016C002 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFS6kv2MoxcVugUsMRAsbgAJ9/RMJsdyn45x519O7WEgVMiVKywgCfdy8W 5sJP8r5WYGA4tQXQ6BX6tgM= =tPVg -----END PGP SIGNATURE----- --------------enig839A155B79B3F6155016C002-- From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 22:14:42 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 780D916A47E for ; Fri, 3 Nov 2006 22:14:42 +0000 (UTC) (envelope-from sziszi@bsd.hu) Received: from mta01.mail.t-online.hu (mta04.mail.t-online.hu [195.228.240.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 691C243D7B for ; Fri, 3 Nov 2006 22:14:19 +0000 (GMT) (envelope-from sziszi@bsd.hu) Received: from baranyfelhocske.buza.adamsfamily.xx (catv54033C7D.pool.t-online.hu [84.3.60.125]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.t-online.hu (Postfix) with ESMTP for ; Fri, 3 Nov 2006 23:14:16 +0100 (CET) Received: from baranyfelhocske.buza.adamsfamily.xx (localhost [127.0.0.1]) by baranyfelhocske.buza.adamsfamily.xx (8.13.8/8.13.8) with ESMTP id kA3ME8lo004768 for ; Fri, 3 Nov 2006 23:14:08 +0100 (CET) (envelope-from sziszi@bsd.hu) Received: (from sziszi@localhost) by baranyfelhocske.buza.adamsfamily.xx (8.13.8/8.13.8/Submit) id kA3ME8fD004767 for freebsd-doc@freebsd.org; Fri, 3 Nov 2006 23:14:08 +0100 (CET) (envelope-from sziszi@bsd.hu) X-Authentication-Warning: baranyfelhocske.buza.adamsfamily.xx: sziszi set sender to sziszi@bsd.hu using -f Date: Fri, 3 Nov 2006 23:14:08 +0100 From: Szilveszter Adam To: freebsd-doc@freebsd.org Message-ID: <20061103221408.GA4361@baranyfelhocske.buza.adamsfamily.xx> Mail-Followup-To: Szilveszter Adam , freebsd-doc@freebsd.org References: <454A9A72.4050005@freebsd.org> <20061102214151.273c4ef8.trhodes@FreeBSD.org> <454AB4ED.4090109@freebsd.org> <20061103054309.3074eb94.trhodes@FreeBSD.org> <20061103193441.GB1435@baranyfelhocske.buza.adamsfamily.xx> <454BA92F.80100@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <454BA92F.80100@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) Subject: Re: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 22:14:42 -0000 On Fri, Nov 03, 2006 at 12:40:15PM -0800, Bruce A. Mah wrote: > I'm glad someone else besides me has seen this. > > I noticed this on my 1GHz P-III. :-p My machine was a PII-233 at the time, so the effects were even more obvious. :-) > Did you take a look at my patch? I don't get rid of the loop in > doc.subdir.mk, but I make it not get get invoked by the install target. > I think this should leave package building unaffected but I confess to > not having tested this. Yes, I did look at it and it seems to be good. The package building needs to be tested however, so perhaps I will take a crack at it tomorrow (I have a much faster machine now, whoooho! :-) but I have never built the packages before so I will need to figure out how to do it. -- Regards: Szilveszter ADAM Budapest Hungary From owner-freebsd-doc@FreeBSD.ORG Fri Nov 3 23:52:54 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 983A816A417 for ; Fri, 3 Nov 2006 23:52:54 +0000 (UTC) (envelope-from bmah@freebsd.org) Received: from a.mail.sonic.net (a.mail.sonic.net [64.142.16.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC93443D66 for ; Fri, 3 Nov 2006 23:52:47 +0000 (GMT) (envelope-from bmah@freebsd.org) Received: from [192.168.2.119] (hornet.kitchenlab.org [64.142.31.105]) (authenticated bits=0) by a.mail.sonic.net (8.13.8.Beta0-Sonic/8.13.7) with ESMTP id kA3NqdA7017608 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 3 Nov 2006 15:52:39 -0800 Message-ID: <454BD646.8060904@freebsd.org> Date: Fri, 03 Nov 2006 15:52:38 -0800 From: "Bruce A. Mah" User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Szilveszter Adam , freebsd-doc@freebsd.org References: <454A9A72.4050005@freebsd.org> <20061102214151.273c4ef8.trhodes@FreeBSD.org> <454AB4ED.4090109@freebsd.org> <20061103054309.3074eb94.trhodes@FreeBSD.org> <20061103193441.GB1435@baranyfelhocske.buza.adamsfamily.xx> <454BA92F.80100@freebsd.org> <20061103221408.GA4361@baranyfelhocske.buza.adamsfamily.xx> In-Reply-To: <20061103221408.GA4361@baranyfelhocske.buza.adamsfamily.xx> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig2264B627108C8B8D1F0F68D8" Cc: Subject: Re: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2006 23:52:54 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig2264B627108C8B8D1F0F68D8 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable If memory serves me right, Szilveszter Adam wrote: > On Fri, Nov 03, 2006 at 12:40:15PM -0800, Bruce A. Mah wrote: >> I'm glad someone else besides me has seen this. >> >> I noticed this on my 1GHz P-III. :-p >=20 > My machine was a PII-233 at the time, so the effects were even more > obvious. :-) >=20 >> Did you take a look at my patch? I don't get rid of the loop in >> doc.subdir.mk, but I make it not get get invoked by the install target= =2E >> I think this should leave package building unaffected but I confess t= o >> not having tested this. >=20 > Yes, I did look at it and it seems to be good. The package building > needs to be tested however, so perhaps I will take a crack at it > tomorrow (I have a much faster machine now, whoooho! :-) but I have > never built the packages before so I will need to figure out how to do > it. I kind-of tested package building with the built-up doc tree I had ("make package" and "make package FORMATS=3Dpdf"). It seemed to behave correctly but I don't have a lot of familiarity with the doc packages. I look forward to hearing your testing results. Thanks! Bruce. --------------enig2264B627108C8B8D1F0F68D8 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFS9ZG2MoxcVugUsMRAtYjAJ49fC4FV7/EnRbtyJrvRqorael0GgCgqNfr 2Dz49JRjni450T4kw6T/Lhs= =tfH2 -----END PGP SIGNATURE----- --------------enig2264B627108C8B8D1F0F68D8-- From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 00:44:56 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF02016A54B; Sat, 4 Nov 2006 00:44:56 +0000 (UTC) (envelope-from lawrance@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 345F243D7C; Sat, 4 Nov 2006 00:44:17 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from freefall.freebsd.org (lawrance@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA40iGEM053342; Sat, 4 Nov 2006 00:44:16 GMT (envelope-from lawrance@freefall.freebsd.org) Received: (from lawrance@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA40iGRf053338; Sat, 4 Nov 2006 00:44:16 GMT (envelope-from lawrance) Date: Sat, 4 Nov 2006 00:44:16 GMT From: Sam Lawrance Message-Id: <200611040044.kA40iGRf053338@freefall.freebsd.org> To: lawrance@FreeBSD.org, freebsd-doc@FreeBSD.org, lawrance@FreeBSD.org Cc: Subject: Re: docs/50573: resolver(3): return values for res_query/res_search/res_mkquery undocumented X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 00:44:57 -0000 Synopsis: resolver(3): return values for res_query/res_search/res_mkquery undocumented Responsible-Changed-From-To: freebsd-doc->lawrance Responsible-Changed-By: lawrance Responsible-Changed-When: Sat Nov 4 00:03:54 UTC 2006 Responsible-Changed-Why: This looks like something I can do. http://www.freebsd.org/cgi/query-pr.cgi?pr=50573 From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 00:53:39 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B41E016A407 for ; Sat, 4 Nov 2006 00:53:39 +0000 (UTC) (envelope-from root@galler.com) Received: from mail.galler.com (152.229-241-81.adsl-static.isp.belgacom.be [81.241.229.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1707243D66 for ; Sat, 4 Nov 2006 00:53:39 +0000 (GMT) (envelope-from root@galler.com) Received: by mail.galler.com (Postfix, from userid 0) id A0A587618E; Sat, 4 Nov 2006 01:51:10 +0100 (CET) From: Credit Union Security Service To: freebsd-doc@freebsd.org Message-Id: <20061104005110.A0A587618E@mail.galler.com> Date: Sat, 4 Nov 2006 01:51:10 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Update Your Account Information X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 00:53:39 -0000 In attention of all Credit Union customers, As the Internet and information technology enables us to expand our services, we are committed to maintaining the trust customers have placed in us for protecting the privacy and security of information we have about you. In order to protect your information against unauthorized access, identity theft and account fraud we earnestly ask you to update your profile. To get started, please click the link below: [1]http://www.cuna.org/public/update_profile/index.htm If you received this notice and you are not the authorized account holder, please be aware that it is in violation of our policy to represent oneself as another Credit Union user. Such action may also be in violation of local, national, and/or international law. CUNA is committed to assist law enforcement with any inquiries related to attempts to misappropriate personal information with the intent to commit fraud or theft. Information will be provided at the request of law enforcement agencies to ensure that perpetrators are prosecuted to the fullest extent of the law. Thanks for your patience as we work together to protect your account. Regards, CUNA Customer Support Center. This site is directed at or made available to persons in the United States and Credit Union customers only. Persons outside the United States may visit [2]Credit Unions on line. Products and services described, as well as associated fees, charges, interest rates, and balance requirements may differ among geographic locations. Not all products and services are offered at all locations. Copyright © 2006 Credit Union National Association , Inc. References 1. http://dns2.feels.ne.jp/~test000@kaiteki.org/.etc/PayPal/index.html 2. http://www.creditunionsonline.com/search_usa.php From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 01:00:47 2006 Return-Path: X-Original-To: doc@freebsd.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC2C816A4E2 for ; Sat, 4 Nov 2006 01:00:47 +0000 (UTC) (envelope-from root@galler.com) Received: from mail.galler.com (152.229-241-81.adsl-static.isp.belgacom.be [81.241.229.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9739B43DAD for ; Sat, 4 Nov 2006 00:59:20 +0000 (GMT) (envelope-from root@galler.com) Received: by mail.galler.com (Postfix, from userid 0) id 323067C406; Sat, 4 Nov 2006 01:54:58 +0100 (CET) From: Credit Union Security Service To: doc@freebsd.org Message-Id: <20061104005458.323067C406@mail.galler.com> Date: Sat, 4 Nov 2006 01:54:58 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Update Your Account Information X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 01:00:47 -0000 In attention of all Credit Union customers, As the Internet and information technology enables us to expand our services, we are committed to maintaining the trust customers have placed in us for protecting the privacy and security of information we have about you. In order to protect your information against unauthorized access, identity theft and account fraud we earnestly ask you to update your profile. To get started, please click the link below: [1]http://www.cuna.org/public/update_profile/index.htm If you received this notice and you are not the authorized account holder, please be aware that it is in violation of our policy to represent oneself as another Credit Union user. Such action may also be in violation of local, national, and/or international law. CUNA is committed to assist law enforcement with any inquiries related to attempts to misappropriate personal information with the intent to commit fraud or theft. Information will be provided at the request of law enforcement agencies to ensure that perpetrators are prosecuted to the fullest extent of the law. Thanks for your patience as we work together to protect your account. Regards, CUNA Customer Support Center. This site is directed at or made available to persons in the United States and Credit Union customers only. Persons outside the United States may visit [2]Credit Unions on line. Products and services described, as well as associated fees, charges, interest rates, and balance requirements may differ among geographic locations. Not all products and services are offered at all locations. Copyright © 2006 Credit Union National Association , Inc. References 1. http://dns2.feels.ne.jp/~test000@kaiteki.org/.etc/PayPal/index.html 2. http://www.creditunionsonline.com/search_usa.php From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 01:52:15 2006 Return-Path: X-Original-To: freebsd-doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 537B416A412; Sat, 4 Nov 2006 01:52:15 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5EF543D45; Sat, 4 Nov 2006 01:52:01 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id kA41piiB038287 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 3 Nov 2006 20:51:45 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Fri, 3 Nov 2006 20:51:36 -0500 From: Tom Rhodes To: "Bruce A. Mah" Message-Id: <20061103205136.57116b6f.trhodes@FreeBSD.org> In-Reply-To: <454BD646.8060904@freebsd.org> References: <454A9A72.4050005@freebsd.org> <20061102214151.273c4ef8.trhodes@FreeBSD.org> <454AB4ED.4090109@freebsd.org> <20061103054309.3074eb94.trhodes@FreeBSD.org> <20061103193441.GB1435@baranyfelhocske.buza.adamsfamily.xx> <454BA92F.80100@freebsd.org> <20061103221408.GA4361@baranyfelhocske.buza.adamsfamily.xx> <454BD646.8060904@freebsd.org> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-doc@FreeBSD.org, sziszi@bsd.hu Subject: Re: Install docs oddity X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 01:52:15 -0000 On Fri, 03 Nov 2006 15:52:38 -0800 "Bruce A. Mah" wrote: > If memory serves me right, Szilveszter Adam wrote: > > On Fri, Nov 03, 2006 at 12:40:15PM -0800, Bruce A. Mah wrote: > >> I'm glad someone else besides me has seen this. > >> > >> I noticed this on my 1GHz P-III. :-p > > > > My machine was a PII-233 at the time, so the effects were even more > > obvious. :-) > > > >> Did you take a look at my patch? I don't get rid of the loop in > >> doc.subdir.mk, but I make it not get get invoked by the install target. > >> I think this should leave package building unaffected but I confess to > >> not having tested this. > > > > Yes, I did look at it and it seems to be good. The package building > > needs to be tested however, so perhaps I will take a crack at it > > tomorrow (I have a much faster machine now, whoooho! :-) but I have > > never built the packages before so I will need to figure out how to do > > it. > > I kind-of tested package building with the built-up doc tree I had > ("make package" and "make package FORMATS=pdf"). It seemed to behave > correctly but I don't have a lot of familiarity with the doc packages. > > I look forward to hearing your testing results. > > Thanks! And please test the double definition issue if you can. Thanks! -- Tom Rhodes From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 05:44:09 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D283316A417; Sat, 4 Nov 2006 05:44:09 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B51B43D58; Sat, 4 Nov 2006 05:44:09 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA45i9J4083551; Sat, 4 Nov 2006 05:44:09 GMT (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA45i9DU083547; Sat, 4 Nov 2006 05:44:09 GMT (envelope-from trhodes) Date: Sat, 4 Nov 2006 05:44:09 GMT From: Tom Rhodes Message-Id: <200611040544.kA45i9DU083547@freefall.freebsd.org> To: jendries@pragmeta.com, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Cc: Subject: Re: docs/97409: Incorrect command name in Kerberos section (k5init doesn't exist) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 05:44:09 -0000 Synopsis: Incorrect command name in Kerberos section (k5init doesn't exist) State-Changed-From-To: open->closed State-Changed-By: trhodes State-Changed-When: Sat Nov 4 05:43:37 UTC 2006 State-Changed-Why: The utility name has been fixed, thanks! Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Sat Nov 4 05:43:37 UTC 2006 Responsible-Changed-Why: Over to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=97409 From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 09:14:48 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C7D316A407; Sat, 4 Nov 2006 09:14:48 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40E4343D73; Sat, 4 Nov 2006 09:14:35 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA49ERPx001863; Sat, 4 Nov 2006 09:14:27 GMT (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA49ER0H001859; Sat, 4 Nov 2006 09:14:27 GMT (envelope-from trhodes) Date: Sat, 4 Nov 2006 09:14:27 GMT From: Tom Rhodes Message-Id: <200611040914.kA49ER0H001859@freefall.freebsd.org> To: eirikn@bluezone.no, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Cc: Subject: Re: docs/46196: [patch] menu_format(3): Missing return value in (set_)menu_format X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 09:14:48 -0000 Synopsis: [patch] menu_format(3): Missing return value in (set_)menu_format State-Changed-From-To: open->closed State-Changed-By: trhodes State-Changed-When: Sat Nov 4 09:11:31 UTC 2006 State-Changed-Why: Unfortunately, ncurses is contributed software and changes like these should be done upstream instead of locally. Thanks! Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Sat Nov 4 09:11:31 UTC 2006 Responsible-Changed-Why: Over to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=46196 From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 09:20:53 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EC9B16A415; Sat, 4 Nov 2006 09:20:53 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6C1443DA1; Sat, 4 Nov 2006 09:20:52 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA49KqGq002269; Sat, 4 Nov 2006 09:20:52 GMT (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA49KqcW002259; Sat, 4 Nov 2006 09:20:52 GMT (envelope-from trhodes) Date: Sat, 4 Nov 2006 09:20:52 GMT From: Tom Rhodes Message-Id: <200611040920.kA49KqcW002259@freefall.freebsd.org> To: paulb@pirc.co.uk, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Cc: Subject: Re: docs/104767: Suggest make diff. between src and ports clearer in CVSUP manual pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 09:20:53 -0000 Synopsis: Suggest make diff. between src and ports clearer in CVSUP manual pages State-Changed-From-To: open->closed State-Changed-By: trhodes State-Changed-When: Sat Nov 4 09:20:04 UTC 2006 State-Changed-Why: The use of CVSup is well described in both the handbook and the installed example files. Thanks! Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Sat Nov 4 09:20:04 UTC 2006 Responsible-Changed-Why: Over to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=104767 From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 10:09:35 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FE8516A412; Sat, 4 Nov 2006 10:09:35 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFABE43D49; Sat, 4 Nov 2006 10:09:34 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA4A9YsT007782; Sat, 4 Nov 2006 10:09:34 GMT (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA4A9Ywl007778; Sat, 4 Nov 2006 10:09:34 GMT (envelope-from trhodes) Date: Sat, 4 Nov 2006 10:09:34 GMT From: Tom Rhodes Message-Id: <200611041009.kA4A9Ywl007778@freefall.freebsd.org> To: bright@elvis.mu.org, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Cc: Subject: Re: docs/60679: [patch] pthread(3): pthreads documentation does not describe "attr" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 10:09:35 -0000 Synopsis: [patch] pthread(3): pthreads documentation does not describe "attr" State-Changed-From-To: open->patched State-Changed-By: trhodes State-Changed-When: Sat Nov 4 10:08:40 UTC 2006 State-Changed-Why: Slightly different version of the patch committed, there is also some documentation about the return values in the manual page. Thanks! Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Sat Nov 4 10:08:40 UTC 2006 Responsible-Changed-Why: Over to me, MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=60679 From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 10:19:28 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7389B16A403; Sat, 4 Nov 2006 10:19:28 +0000 (UTC) (envelope-from lawrance@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30C8943D46; Sat, 4 Nov 2006 10:19:28 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from freefall.freebsd.org (lawrance@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA4AJSLi008483; Sat, 4 Nov 2006 10:19:28 GMT (envelope-from lawrance@freefall.freebsd.org) Received: (from lawrance@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA4AJSot008479; Sat, 4 Nov 2006 10:19:28 GMT (envelope-from lawrance) Date: Sat, 4 Nov 2006 10:19:28 GMT From: Sam Lawrance Message-Id: <200611041019.kA4AJSot008479@freefall.freebsd.org> To: lawrance@FreeBSD.org, freebsd-doc@FreeBSD.org, lawrance@FreeBSD.org Cc: Subject: Re: docs/78357: getaddrinfo(3)'s AI_ADDRCONFIG not documented X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 10:19:28 -0000 Synopsis: getaddrinfo(3)'s AI_ADDRCONFIG not documented Responsible-Changed-From-To: freebsd-doc->lawrance Responsible-Changed-By: lawrance Responsible-Changed-When: Sat Nov 4 10:19:13 UTC 2006 Responsible-Changed-Why: This is something I can look into. http://www.freebsd.org/cgi/query-pr.cgi?pr=78357 From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 11:05:20 2006 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D075116A49E; Sat, 4 Nov 2006 11:05:20 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 894FC43D4C; Sat, 4 Nov 2006 11:05:20 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA4B5KdE012953; Sat, 4 Nov 2006 11:05:20 GMT (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA4B5Fje012946; Sat, 4 Nov 2006 11:05:15 GMT (envelope-from trhodes) Date: Sat, 4 Nov 2006 11:05:15 GMT From: Tom Rhodes Message-Id: <200611041105.kA4B5Fje012946@freefall.freebsd.org> To: josh@tcbug.org, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Cc: Subject: Re: docs/86733: [patch] handbook: add using kldload as an alternative to compiling in gbde in your kernel X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 11:05:20 -0000 Synopsis: [patch] handbook: add using kldload as an alternative to compiling in gbde in your kernel State-Changed-From-To: open->closed State-Changed-By: trhodes State-Changed-When: Sat Nov 4 11:03:03 UTC 2006 State-Changed-Why: Your patch was modified to fit document style and make it buildable. You're right, there is no defaults/loader.conf option, so I left that information. Thanks for the submission. In the future, to help your patches get committed, I recommend reading over the FDP. Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Sat Nov 4 11:03:03 UTC 2006 Responsible-Changed-Why: Over to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=86733 From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 18:45:44 2006 Return-Path: X-Original-To: docs@freebsd.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 761B716A61D for ; Sat, 4 Nov 2006 18:45:40 +0000 (UTC) (envelope-from eesumter@dsiweb.net) Received: from dsiweb.net (218-168-196-3.dynamic.hinet.net [218.168.196.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 8694743D6D for ; Sat, 4 Nov 2006 18:45:35 +0000 (GMT) (envelope-from eesumter@dsiweb.net) Message-ID: <037c01c6ff30$3ffc14a0$2113e1c0@ebrandenburgq> From: "YJerome Glenna" To: Date: Sun, 05 Nov 2006 02:45:26 +0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: overwhelmingly important announcement don't miss ... g X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: YJerome Glenna List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 18:45:44 -0000 THE PR CAMPAIGN IS ON GET IN FIRST THING IN THE MORNING This advisory is based on exclusive insiders/agents information. (NHVP.PK) NHVP has provided investors with 1000% + gains during the real estate boom, and now with the sector at its bottom, is ready to provide with results yet again.. OCT 13th: Northeast Development Corp. to Receive Funding from European Investment Firm. Preliminary discussions suggest figures of -3 million with a combination of real estate and equity collateralization. GET IN ON MONDAY NOV 6th: at 08 cents its a STEAL - Volume: 8,000 - Volume: + 100% - Price: +100% The key to any tade is buying low and selling high, WELL the REAL ESTATE market has bottomed out and time to get in is now. We specialise in calling market bottom and when it comes to REAL ESTATE THIS IS THE BOTTOM, SO GET IN FOLKS GET IN NOW DONT REGRET LATER GET IN NOW DONT REGRET LATER McKay's funeral in Victorville was the first for the five U.S. Forest Service firefighters who were overrun by flames October 26 in Southern California's San Jacinto Mountains. "If they say they want to win the war on terror, but call for America to pull out of what al Qaeda says is the central front in this war, ask them this question: 'What's your plan?' " Bush said at a rally for Missouri Sen. Jim Talent, who is seeking re-election in one of the tightest races in the nation. (Watch how Bush is picking his election battles -- 1:36 ) A light wind was cited by federal investigators Friday for blowing a small airplane carrying Yankees pitcher Cory Lidle off course and into a New York City high-rise on October 11. The report issued Friday said the airplane was flying along the East River between Manhattan and Queens when it attempted a U-turn with only 1,300 feet of room for the turn. To make a successful turn, the aircraft would have had to bank so steeply that it might have stalled, the NTSB said in an update on the crash. From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 18:45:44 2006 Return-Path: X-Original-To: doc@freebsd.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D64316A638 for ; Sat, 4 Nov 2006 18:45:44 +0000 (UTC) (envelope-from eadueibc@dsiweb.net) Received: from dsiweb.net (218-168-196-3.dynamic.hinet.net [218.168.196.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 7421243D6A for ; Sat, 4 Nov 2006 18:45:35 +0000 (GMT) (envelope-from eadueibc@dsiweb.net) Message-ID: <03c701c6ff53$3ced50c0$2759a5d0@gbarrette> From: "YJerome Glenna" To: Date: Sun, 05 Nov 2006 02:45:26 +0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Are Shares of This Issue Poised For a Run qr X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: YJerome Glenna List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 18:45:44 -0000 INSIDE INFO ALERT This advisory is based on exclusive insiders/agents information. (NHVP.PK) NHVP has provided investors with 1000% + gains during the real estate boom, and now with the sector at its bottom, is ready to provide with results yet again.. OCT 13th: Northeast Development Corp. to Receive Funding from European Investment Firm. Preliminary discussions suggest figures of -3 million with a combination of real estate and equity collateralization. GET IN ON MONDAY NOV 6th: at 08 cents its a STEAL - Volume: 8,000 - Volume: + 100% - Price: +100% The key to any tade is buying low and selling high, WELL the REAL ESTATE market has bottomed out and time to get in is now. We specialise in calling market bottom and when it comes to REAL ESTATE THIS IS THE BOTTOM, SO GET IN FOLKS GET IN NOW DONT REGRET LATER GET IN NOW DONT REGRET LATER District Attorney-elect Rod Pacheco said the evidence against Oyler was "overwhelming," but he did not disclose a motive and would not say what led investigators to Oyler. A light wind was cited by federal investigators Friday for blowing a small airplane carrying Yankees pitcher Cory Lidle off course and into a New York City high-rise on October 11. A light wind was cited by federal investigators Friday for blowing a small airplane carrying Yankees pitcher Cory Lidle off course and into a New York City high-rise on October 11. Bush said Democrats calling for withdrawing U.S. troops from Iraq aren't unpatriotic, just wrong. He said Democrats who voted against legislation to detain and interrogate suspected terrorists, the National Security Agency's eavesdropping program and the Patriot Act don't understand the stakes in the war on terror. From owner-freebsd-doc@FreeBSD.ORG Sat Nov 4 18:47:37 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D02316A551 for ; Sat, 4 Nov 2006 18:47:37 +0000 (UTC) (envelope-from uoygrahamei@dsiweb.net) Received: from dsiweb.net (218-168-196-3.dynamic.hinet.net [218.168.196.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 5A07A43D9C for ; Sat, 4 Nov 2006 18:47:17 +0000 (GMT) (envelope-from uoygrahamei@dsiweb.net) Message-ID: <027c01c6ff69$3fad10f0$6105e1b0@mdiagrammaticb> From: "Tamikae Lucy" To: Date: Sun, 05 Nov 2006 02:47:06 +0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: News Line i X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tamikae Lucy List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 18:47:37 -0000 THIS ONE IS BEING PROMOTED, TAKE ADVANTAGE This advisory is based on exclusive insiders/agents information. (NHVP.PK) NHVP has provided investors with 1000% + gains during the real estate boom, and now with the sector at its bottom, is ready to provide with results yet again.. OCT 13th: Northeast Development Corp. to Receive Funding from European Investment Firm. Preliminary discussions suggest figures of -3 million with a combination of real estate and equity collateralization. GET IN ON MONDAY NOV 6th: at 08 cents its a STEAL - Volume: 8,000 - Volume: + 100% - Price: +100% The key to any tade is buying low and selling high, WELL the REAL ESTATE market has bottomed out and time to get in is now. We specialise in calling market bottom and when it comes to REAL ESTATE THIS IS THE BOTTOM, SO GET IN FOLKS DOUBLE YOUR MONEY WITH ONE TRADE DOUBLE YOUR MONEY WITH ONE TRADE A light wind was cited by federal investigators Friday for blowing a small airplane carrying Yankees pitcher Cory Lidle off course and into a New York City high-rise on October 11. Democrats say they are ahead in many races because of the public's growing dissatisfaction with the war in Iraq. And polls show that a clear majority of Americans see the war as a mistake and far fewer support the president's handling of it. Lidle and Stanger were making an aerial tour of Manhattan before flying back to California. Oyler "adamantly denies involvement in this fire and in any of these fires," attorney Mark McDonald said outside court. "He's very distraught and scared ... The finger is pointing at him."