From owner-freebsd-questions@FreeBSD.ORG Wed Feb 22 01:12:56 2006 Return-Path: X-Original-To: questions@freebsd.org 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 EAA1F16A420 for ; Wed, 22 Feb 2006 01:12:56 +0000 (GMT) (envelope-from illoai@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 869D843D45 for ; Wed, 22 Feb 2006 01:12:56 +0000 (GMT) (envelope-from illoai@gmail.com) Received: by xproxy.gmail.com with SMTP id s12so94309wxc for ; Tue, 21 Feb 2006 17:12:55 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Nu46aJyi66ACYmfjJEraWyHlwkJ9LUb/wGFS2pf7Z/72ZuxOnJE+b7x24ILXpOONv+KEETdFBX9telwOmPngeWVsyZ++Zc44v2cmAbgPKiGmQ9dSm8ZxOYWPQyIP+0NzoujpRpmbjDnJn5hU6XeTIPbXE65Cf9OvFUgYNkbLt1Y= Received: by 10.70.35.19 with SMTP id i19mr204911wxi; Tue, 21 Feb 2006 17:12:55 -0800 (PST) Received: by 10.70.58.15 with HTTP; Tue, 21 Feb 2006 17:12:55 -0800 (PST) Message-ID: Date: Tue, 21 Feb 2006 19:12:55 -0600 From: "illoai@gmail.com" To: "Kristian Vaaf" , questions@freebsd.org In-Reply-To: <20060221184738.98233.qmail@web52714.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <7.0.1.0.2.20060221103409.021a8808@broadpark.no> <20060221184738.98233.qmail@web52714.mail.yahoo.com> Cc: Subject: Re: Haven't been able to make world in about a year X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Feb 2006 01:12:57 -0000 On 2/21/06, Kris Anderson wrote: > > > --- Kristian Vaaf wrote: > > > > > Hello! > > > > I don't know what's wrong. But all my makes error > > out. > > I've tried over and over again. And sent about a > > dozen e-mails to this list. > > > > http://www.home.no/hedhnta/result.txt > > > > When doing: > > > > cvsup -g -L 2 /etc/cvsupfile > > > > And then running: > > > > cd /usr/src \ > > && make buildworld \ > > && make buildkernel KERNCONF=3DARBA \ > > && make installkernel KERNCONF=3DARBA \ > > && make installworld \ > > && mergemaster \ > > && make clean \ > > && rm -rf /usr/obj/* > > > > This is how it's done, no? > Sort of done like that. Looking at the FreeBSD > handbook it says: > make buildworld > make buildkernel KERNCONF=3DARBA > make installkernel KERNCONF=3DARBA > reboot > > Note: There are a few rare cases when an extra run > of mergemaster -p is needed before the buildworld > step. These are described in UPDATING. In general, > though, you can safely omit this step if you are not > updating across one or more major FreeBSD versions. > > After installkernel finishes successfully, you should > boot in single user mode (i.e. using boot -s from the > loader prompt). Then run: > > mergemaster -p > make installworld > mergemaster > reboot > > Please help me. > > > > Thanks, > > Vaaf > Hope that helps. The first step I would suggest is to* root# mv /etc/make.conf /etc/make.backup and retry the build. If it still gives the syntax error at csh build, root# rm -r /usr/src/contrib && cvsup -g -L1 /etc/cvsupfile because cvsup (afik, ianal, iaanaaoavss) only checks the file header /* $Header: /src/pub/tcsh/sh.h,v 3.133 2005/03/25 18:46:41 kim Exp $ */ if the rest of the file has some form of corruption within, cvsup won't know that, and will fail to refetch it, so you remove the appearantly offending file or files and (hopefully) it build okay. *Note that I believe buildworld and such default to -O if no /etc/make.conf exists. Again, I could be very mistaken. Greviously so. -- --