From owner-freebsd-questions@FreeBSD.ORG Tue Apr 15 02:55:12 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14B75F00 for ; Tue, 15 Apr 2014 02:55:12 +0000 (UTC) Received: from mail-we0-x232.google.com (mail-we0-x232.google.com [IPv6:2a00:1450:400c:c03::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9C3BE1C34 for ; Tue, 15 Apr 2014 02:55:11 +0000 (UTC) Received: by mail-we0-f178.google.com with SMTP id u56so8733759wes.23 for ; Mon, 14 Apr 2014 19:55:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=Dvvvx4eVQeF5TfW7nCkSDQi6DoKkE2nxCJ3OPv58Pvc=; b=JFtfTITLYVdhfAQrbd2xDNTlXv1vK4800ndj/N2ofT/7ZTzFCKcFixwSxmOoG7izc7 K9QymkLCD5TsaWllC2Jja0t0F/JGFHu1RuvAx1LPEDz1Ul4/aTQl0VZn+kZ108NQ6ESu 6BjA8lwSStDNJytSkHkqPENE6fHPHW/CcgpExdYFzY7H4gAkopqc2w8GN6Jhtbhuc8dQ bSV7YkvzdD5aWYjpWpgvCwpX8/vz/a+vtYNKIP/pgbOPdOmdGuG5dHnzOEI0CPQArMI0 k0TMWUVLeEaMLCDNyt6RAOOlwaDj0fX8wfHYt+OTrTfB33bBqP3wVf/a/F+Chgm+fWep 7/HQ== MIME-Version: 1.0 X-Received: by 10.194.81.164 with SMTP id b4mr35778384wjy.2.1397530509700; Mon, 14 Apr 2014 19:55:09 -0700 (PDT) Received: by 10.217.127.199 with HTTP; Mon, 14 Apr 2014 19:55:09 -0700 (PDT) In-Reply-To: References: Date: Mon, 14 Apr 2014 21:55:09 -0500 Message-ID: Subject: Re: make installworld failed From: Mike Casper To: FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 02:55:12 -0000 On Mon, Apr 14, 2014 at 9:46 PM, Thomas Hoffmann wrote: > > On Mon, Apr 14, 2014 at 10:17 PM, Mike Casper wrote: > >> >> Without rebooting and in single user mode, is it ok to 'rm -rf /usr/src' >> and 'rm -rf /usr/obj' then 'svn checkout >> https://svn0.us-east.FreeBSD.org/base/stable /usr/src and restart from >> the >> beginning of the handbook procedure list? >> >> Thanks > > > Here is what I would do: > > 1) svn update /usr/src > This will update your working copy of the repository ... lots faster > than a whole new checkout > 2) make -j4 -DNO_CLEAN buildworld > Using -DNO_CLEAN will keep everything from the last 'make buildworld' > and rebuild only what is required given the source tree updates, which will > be lots faster than a full 'make buildworld'. > 3) Continue with 'make buildkernel' etc. etc. as in the Handbook > > -Tom > To late. My inpatients got the better of me, but I did realize after I started a new checkout of the src, that an update would be quicker. Thanks for adding the other nugget with the make -j -DNO_CLEAN. I had absolutely no idea I could do that. I'll let it buildworld overnight and then hit it with a buildkernel KERNCONF=COLDSTEEL in the morning. Thanks