From owner-svn-src-all@FreeBSD.ORG Fri May 29 17:09:52 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F28461065670; Fri, 29 May 2009 17:09:52 +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 9EDEA8FC08; Fri, 29 May 2009 17:09:52 +0000 (UTC) (envelope-from niclas.zeising@gmail.com) Received: from localhost (mxf1.local [127.0.0.1]) by mxf1-reinject (Postfix) with ESMTP id C82F05D0E; Fri, 29 May 2009 19:09:50 +0200 (CEST) X-Virus-Scanned: by amavisd-new using ClamAV at bahnhof.se (MXF1) X-Spam-Score: 2.819 X-Spam-Level: ** X-Spam-Status: No, score=2.819 tagged_above=-99 required=5 tests=[DNS_FROM_RFC_POST=1.44, 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 hPPgdc-lFtBa; Fri, 29 May 2009 19:09:48 +0200 (CEST) Received: from [79.136.90.99] (h-90-99.A163.priv.bahnhof.se [79.136.90.99]) by mxf1.bahnhof.se (Postfix) with ESMTP id 939845D05; Fri, 29 May 2009 19:09:48 +0200 (CEST) Received: from 127.0.0.1 (AVG SMTP 8.5.339 [270.12.44/2140]); Fri, 29 May 2009 19:09:48 +0200 Message-ID: <4A2016DC.80001@gmail.com> Date: Fri, 29 May 2009 19:09:48 +0200 From: Niclas Zeising User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Andriy Gapon References: <200905291442.n4TEg290077819@svn.freebsd.org> In-Reply-To: <200905291442.n4TEg290077819@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-7@freebsd.org Subject: Re: svn commit: r193040 - stable/7 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 May 2009 17:09:53 -0000 Andriy Gapon wrote: > Author: avg > Date: Fri May 29 14:42:02 2009 > New Revision: 193040 > URL: http://svn.freebsd.org/changeset/base/193040 > > Log: > use new btxld when building world in older environment > > This is a direct commit to the branch. > This is for the benefit of those who define LOADER_ZFS_SUPPORT but > should't hurt anybody else. > Build of zfsboot requires new feature of btxld that it obtained > (via MFC) in r192697: "merge 177933. Allow for a zero length 'loader'" > (btxld is a build tool and a cross-build tool) > Please note that __FreeBSD_version was bumped some time after r192697 > for an unrelated change. > > Reviewed by: des > Approved by: jhb (mentor) > > Modified: > stable/7/Makefile.inc1 > > Modified: stable/7/Makefile.inc1 > ============================================================================== > --- stable/7/Makefile.inc1 Fri May 29 14:25:51 2009 (r193039) > +++ stable/7/Makefile.inc1 Fri May 29 14:42:02 2009 (r193040) > @@ -985,7 +985,7 @@ build-tools: > # > # cross-tools: Build cross-building tools > # > -.if ${TARGET_ARCH} != ${MACHINE_ARCH} > +.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 702102 > .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" > _btxld= usr.sbin/btxld > .endif > _______________________________________________ > svn-src-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-all > To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" > Is it possible to get something along this line in 8-CURRENT as well? I accidentally removed btxld once and when I was building world it stopped in sys/boot because it was missing. I had to manually build and install it before i could continue with my buildworld, which was a bit annoying. Regards! Niclas --