From owner-freebsd-current@FreeBSD.ORG Thu Sep 23 05:26:35 2010 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C358106564A for ; Thu, 23 Sep 2010 05:26:35 +0000 (UTC) (envelope-from niclas.zeising@gmail.com) Received: from mxf1.bahnhof.se (mxf1.bahnhof.se [213.80.101.25]) by mx1.freebsd.org (Postfix) with ESMTP id 58E868FC22 for ; Thu, 23 Sep 2010 05:26:34 +0000 (UTC) Received: from localhost (mxf1.local [127.0.0.1]) by mxf1-reinject (Postfix) with ESMTP id AF8561E32BA; Thu, 23 Sep 2010 07:26:33 +0200 (CEST) X-Virus-Scanned: by amavisd-new using ClamAV at bahnhof.se (MXF1) X-Spam-Score: 4.845 X-Spam-Level: **** X-Spam-Status: No, score=4.845 tagged_above=-99 required=5 tests=[DNS_FROM_RFC_POST=1.44, J_CHICKENPOX_73=0.6, RATWARE_GECKO_BUILD=1.426, SPF_NEUTRAL=1.379] Received: from mxf1.bahnhof.se ([127.0.0.1]) by localhost (mxf1.bahnhof.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DHp4+W5D+v7P; Thu, 23 Sep 2010 07:26:29 +0200 (CEST) Received: from [10.32.0.4] (h-90-99.A163.priv.bahnhof.se [79.136.90.99]) by mxf1.bahnhof.se (Postfix) with ESMTP id AB33B1E32A9; Thu, 23 Sep 2010 07:26:29 +0200 (CEST) Message-ID: <4C9AE504.9050609@gmail.com> Date: Thu, 23 Sep 2010 07:26:28 +0200 From: Niclas Zeising User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: Ralph Ellis References: <4C9ABBA4.5080005@netscape.ca> In-Reply-To: <4C9ABBA4.5080005@netscape.ca> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: Error message while updating src for FreeBSD 9 current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Sep 2010 05:26:35 -0000 On 2010-09-23 04:29, Ralph Ellis wrote: > Hi, > I recently upgraded my FreeBSD 8.1 installation to FreeBSD 9 current via > buildworld and buildkernel. I was able to one general ports, src and doc > update by cvsup but now I am getting the following error message when I > do a src update. > >> cvsup srcsupfile >> Connected to cvsup2.FreeBSD.org >> Updating collection src-all/cvs >> Edit src/bin/ps/extern.h >> Illegal instruction >> > I am new to the mailing list. Is this a known error? > Is this an error to do with the source tree or an issue on my end? > > Just for reference, the contents of my supfile are > > *default tag=. > *default host=cvsup2.FreeBSD.org > *default prefix=/usr > *default base=/var/db > *default release=cvs delete use-rel-suffix compress > src-all > ports-all > doc-all > > Thanks in advance for your assistance, > Ralph Ellis > ralphellis1@netscape.ca > Are you using cvsup or csup? Have you recompiled cvsup in case you use that? What's in your make.conf file? Illegal instruction is usually because the program is compiled for another CPU than what it's running on. It can also be that syscalls has changed, but then it usually complains about that. When doing a major version upgrade, you usually have to recompile all ports. Hope this helps! //Niclas