From owner-svn-src-head@FreeBSD.ORG Fri May 6 03:29:54 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C108106566C; Fri, 6 May 2011 03:29:54 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from adsum.doit.wisc.edu (adsum.doit.wisc.edu [144.92.197.210]) by mx1.freebsd.org (Postfix) with ESMTP id F16EE8FC13; Fri, 6 May 2011 03:29:53 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth1.wiscmail.wisc.edu by smtpauth1.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LKR00G048DTRX00@smtpauth1.wiscmail.wisc.edu>; Thu, 05 May 2011 22:29:53 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.65.155]) by smtpauth1.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LKR009328DOMI10@smtpauth1.wiscmail.wisc.edu>; Thu, 05 May 2011 22:29:49 -0500 (CDT) Date: Thu, 05 May 2011 22:29:47 -0500 From: Nathan Whitehorn In-reply-to: <8FF5539E-F91D-46C6-9019-B40CB8010A85@xcllnt.net> To: Marcel Moolenaar Message-id: <4DC36B2B.4010509@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.65.155 X-Spam-PmxInfo: Server=avs-13, Version=5.6.0.2009776, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.5.6.32122, SenderIP=76.210.65.155 References: <201105051416.p45EGfcd003037@svn.freebsd.org> <8FF5539E-F91D-46C6-9019-B40CB8010A85@xcllnt.net> User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.17) Gecko/20110429 Thunderbird/3.1.10 Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r221497 - head/release/ia64 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 03:29:54 -0000 On 05/05/11 16:18, Marcel Moolenaar wrote: > On May 5, 2011, at 7:16 AM, Nathan Whitehorn wrote: > >> @@ -84,15 +63,13 @@ if [ $bootable = yes ]; then >> mv $MNT/boot/loader.efi $MNT/efi/boot/bootia64.efi >> umount $MNT >> mdconfig -d -u $md >> - BOOTOPTS="-b $EFIPART -no-emul-boot" >> + BOOTOPTS="-b bootimage=i386;$EFIPART -o no-emul-boot" >> else >> BOOTOPTS="" >> fi > Thanks! > > Can you explain what this particular change does or why it's done? > I'm cleaning up the release-building code, and am switching them from mkisofs to makefs, which provides the same functionality. This started with some irritation with the cdrtools port and a bug in the HFS hybrid generation that was breaking PPC release CD generation. Switching these to depend on makefs in general speeds the release-building process and removes the number of dependencies involved, since makefs is built as part of base. -Nathan