From owner-freebsd-questions@FreeBSD.ORG Fri Jul 23 15:44:07 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 584BD16A4CE for ; Fri, 23 Jul 2004 15:44:07 +0000 (GMT) Received: from smtp800.mail.sc5.yahoo.com (smtp800.mail.sc5.yahoo.com [66.163.168.179]) by mx1.FreeBSD.org (Postfix) with SMTP id 32AD043D31 for ; Fri, 23 Jul 2004 15:44:07 +0000 (GMT) (envelope-from donaldj@ameritech.net) Received: from unknown (HELO pres7000.mylan.net) (donaldj@ameritech.net@68.248.233.189 with plain) by smtp800.mail.sc5.yahoo.com with SMTP; 23 Jul 2004 15:44:06 -0000 From: "Donald J. O'Neill" To: freebsd-questions@freebsd.org Date: Fri, 23 Jul 2004 10:43:35 -0500 User-Agent: KMail/1.6.2 References: <016801c470bc$8ebbee60$47bf82d8@webairsteve> In-Reply-To: <016801c470bc$8ebbee60$47bf82d8@webairsteve> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407231043.35279.donaldj@ameritech.net> Subject: Re: cvsup question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 15:44:07 -0000 On Friday 23 July 2004 08:54 am, Steve wrote: > am doing cvsup for the first time, and got the hang of it, but have one > questions for those who used it. > > is it advisable to do src-all, or should i only do ports-all > also is this configuration decent, in your opinion > > *default host=cvsup5.FreeBSD.org > *default tag=. > *default base=/usr/local/etc/cvsup > *default prefix=/usr > *default release=cvs delete use-rel-suffix compress > ports-all tag=. > #src-all (pending feedback) > -- > Steve Rieger ====================================== Hi Steve, Your supfile line that has " *default tag=. " is going to download source code for current when you uncomment the " #src-all " line. If you're intending to follow current, that's fine. But, if you're going for 4.10 or 5.2.1, then you need a different default tag line. Until you go through the makeworld sequence, it won't bite you, on second thought, it probably will. Below is the supfile that I use: *default tag=RELENG_5_2 *default host=cvsup15.FreeBSD.org *default prefix=/usr *default base=/usr *default release=cvs *default delete use-rel-suffix #src-all ports-all tag=. #doc-all I would suggest using sysutils/fastest_cvsup. You can either do a pkg_add -r, or build it from the ports. If you just installed FreeBSD, I would do a src-all to get all the latest patches, and after that to get new patches Other than that, you're just using bandwidth. There are more changes going on in the ports, so you would be upgrading there the most. Be sure to read usr/src/UPGRADING and usr/ports/UPGRADING. Don