From owner-freebsd-questions@FreeBSD.ORG Wed Nov 22 16:24:26 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E019116A416 for ; Wed, 22 Nov 2006 16:24:26 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (gizmo.acns.msu.edu [35.8.1.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 650B743D5D for ; Wed, 22 Nov 2006 16:23:56 +0000 (GMT) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (localhost [127.0.0.1]) by gizmo.acns.msu.edu (8.13.6/8.13.6) with ESMTP id kAMGMhfG051039; Wed, 22 Nov 2006 11:22:43 -0500 (EST) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: (from jerrymc@localhost) by gizmo.acns.msu.edu (8.13.6/8.13.6/Submit) id kAMGMhh9051038; Wed, 22 Nov 2006 11:22:43 -0500 (EST) (envelope-from jerrymc) Date: Wed, 22 Nov 2006 11:22:43 -0500 From: Jerry McAllister To: Robert Davison Message-ID: <20061122162243.GB50939@gizmo.acns.msu.edu> References: <231508.24266.qm@web25008.mail.ukl.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <231508.24266.qm@web25008.mail.ukl.yahoo.com> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: Upgrade Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Nov 2006 16:24:27 -0000 On Wed, Nov 22, 2006 at 01:34:23AM +0000, Robert Davison wrote: > If my cvs-upfile reads, and specfically im looking at the default release line.... > > *default release=cvs delete use-rel-suffix compress > *default delete use-rel-suffix > > src-all > ports-all tag=. > doc-all tag=. > > Can anyone tell me what release and branch of FreeBSD im tracking. its > a 6.1 system. I'm asking as I will soon be testing the waters with > Buildworld and mergemaster etc to get to 6.2. What would the default > release= change to then ? if 'cvs' is tracking the 6.1 branch ????? I think you need another line to tell it what branch to track. Here is my file that tracks 6.1. Take off the '_1' part off of the RELENG_6_1 to make it just RELENG_6 and you can track the latest of 6.xxx, whatever it is at the moment. *default host=cvsup.FreeBSD.org *default base=/var/db *default prefix=/usr *default tag=RELENG_6_1 *default release=cvs *default delete use-rel-suffix *default compress src-all ports-all tag=. doc-all tag=. ////jerry