From owner-freebsd-questions@FreeBSD.ORG Mon Mar 18 21:53:28 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9975C392 for ; Mon, 18 Mar 2013 21:53:28 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from smtp.lamaiziere.net (net.lamaiziere.net [94.23.254.147]) by mx1.freebsd.org (Postfix) with ESMTP id 4D70EF18 for ; Mon, 18 Mar 2013 21:53:28 +0000 (UTC) Received: from roxette.lamaiziere.net (50.9.74.86.rev.sfr.net [86.74.9.50]) by smtp.lamaiziere.net (Postfix) with ESMTPA id C19048396; Mon, 18 Mar 2013 22:53:21 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by roxette.lamaiziere.net (Postfix) with ESMTP id D7F68164B; Sun, 17 Mar 2013 23:17:47 +0100 (CET) Date: Sun, 17 Mar 2013 23:17:46 +0100 From: Patrick Lamaiziere To: Drew Tomlinson Subject: Re: Current Way To Update Sources & Rebuild World/Kernel? Message-ID: <20130317231746.3feca323@davenulle.org> In-Reply-To: <51463EA7.2070108@mykitchentable.net> References: <51463EA7.2070108@mykitchentable.net> X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.17; amd64-portbld-freebsd9.1) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 21:53:28 -0000 Le Sun, 17 Mar 2013 15:07:35 -0700, Drew Tomlinson a écrit : > I've been away for a while. In the past, the proper way to update a > system was to grab current sources via cvsup and then rebuild world > and kernel. But now I see cvsup is no longer supported. The > handbook talks about freebsd-update. I do not want binary upgrades > but is this the tool to replace cvsup to update sources? How do I > use it to replace the old way that went something like this: > > cvsup sources > make buildworld > make buildkernel > make installkernel > mergemaster > make installworld Instead cvsup you have to use svn to retrieve the sources : http://www.freebsd.org/doc/handbook/svn.html The good way is (and was) mergemaster -p before make installworld and mergemaster after. regards