From owner-freebsd-questions@FreeBSD.ORG Thu Jul 11 12:37:47 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7D194A7F for ; Thu, 11 Jul 2013 12:37:47 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 3C1661A04 for ; Thu, 11 Jul 2013 12:37:46 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.7/8.14.7) with ESMTP id r6BCbjPA087901; Thu, 11 Jul 2013 06:37:45 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.7/8.14.7/Submit) with ESMTP id r6BCbjut087898; Thu, 11 Jul 2013 06:37:45 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Thu, 11 Jul 2013 06:37:45 -0600 (MDT) From: Warren Block To: Eduardo Morras Subject: Re: [Bulk] FreeBSD upgrade woes (8.3 -> 8.4) In-Reply-To: <20130711120039.a99aeea20ecd078b9d29f18a@yahoo.es> Message-ID: References: <20130711120039.a99aeea20ecd078b9d29f18a@yahoo.es> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Thu, 11 Jul 2013 06:37:46 -0600 (MDT) Cc: freebsd-questions@freebsd.org, David.I.Noel@gmail.com 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: Thu, 11 Jul 2013 12:37:47 -0000 On Thu, 11 Jul 2013, Eduardo Morras wrote: > On Thu, 11 Jul 2013 04:40:38 -0500 > David Noel wrote: >> >> I didn't include the make buildworld or make buildkernel for the sake >> of brevity but yes, I executed them prior to installworld and >> installkernel. > > Perhaps make buildkernel was compiled with -j >1, it's known to create a buggy kernel. Check your make configuration. Adding a -B, like make -B -j N buildkernel may work and is fast if -j is set to number or processors, but it's safer do a make -j 1 buildkernel, same for buildworld. Is this version-specific? I've been using -j4 or -j8 for years for buildworld and kernel (buildkernel + installkernel) on FreeBSD 8 and 9 with no problems. Probably on FreeBSD 7 also, but I don't recall. installworld is a different matter, always do that with a single job.