From owner-freebsd-questions@FreeBSD.ORG Tue Apr 15 02:46:51 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 65290D29 for ; Tue, 15 Apr 2014 02:46:51 +0000 (UTC) Received: from mail-lb0-x22a.google.com (mail-lb0-x22a.google.com [IPv6:2a00:1450:4010:c04::22a]) (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 E00081B7D for ; Tue, 15 Apr 2014 02:46:50 +0000 (UTC) Received: by mail-lb0-f170.google.com with SMTP id s7so6473075lbd.1 for ; Mon, 14 Apr 2014 19:46:48 -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 :cc:content-type; bh=H0sAZiAUFUII2WKDs2ZVdzEBDV3noy3OjQnwSg22sB4=; b=Gfpw55/3JcYBjloc1abGME//hRkxzI0FaDpGWirLG3/NS/81wGaABCXz+7CRXLRAyY jsvkt2+fPeo/IsYOxS5XepYhZ7IWad7b2beemNhLpz/8g4R2QT3TSZDQrHABeEoP6G/q wmdmtlJC1frN3c7JX3QrzGSlL973WB/dNzxLvTFsrlEBDbtvVUAER708KyGOc7j4lbPY KQg9KCaREQ3o8+xCbzrLAkwzSSj7mmbn52SRPcdICKVyYQD8Uoz4fAfpVkDpUaOWNpjt PAOEcNDVhuYkox6mEdM46y5pMzs9ybEYvk+DF7oKeUu6cyGD/Jz6nYaWvdtolOXBP1Ui f1oQ== MIME-Version: 1.0 X-Received: by 10.112.46.225 with SMTP id y1mr30426049lbm.12.1397530008662; Mon, 14 Apr 2014 19:46:48 -0700 (PDT) Received: by 10.112.209.7 with HTTP; Mon, 14 Apr 2014 19:46:48 -0700 (PDT) In-Reply-To: References: Date: Mon, 14 Apr 2014 22:46:48 -0400 Message-ID: Subject: Re: make installworld failed From: Thomas Hoffmann To: FreeBSD Questions Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: Mike Casper 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:46:51 -0000 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