From owner-freebsd-current@FreeBSD.ORG Tue Apr 12 15:14:30 2011 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 BB5B3106566C for ; Tue, 12 Apr 2011 15:14:30 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from argol.doit.wisc.edu (argol.doit.wisc.edu [144.92.197.212]) by mx1.freebsd.org (Postfix) with ESMTP id 8F81E8FC0A for ; Tue, 12 Apr 2011 15:14:30 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth3.wiscmail.wisc.edu by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LJJ0020KP05P300@smtpauth3.wiscmail.wisc.edu> for freebsd-current@freebsd.org; Tue, 12 Apr 2011 10:14:29 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.65.155]) by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LJJ000C0OZWTJ10@smtpauth3.wiscmail.wisc.edu> for freebsd-current@freebsd.org; Tue, 12 Apr 2011 10:14:23 -0500 (CDT) Date: Tue, 12 Apr 2011 10:14:20 -0500 From: Nathan Whitehorn In-reply-to: To: George Kontostanos Message-id: <4DA46C4C.6090206@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.65.155 X-Spam-PmxInfo: Server=avs-11, Version=5.6.0.2009776, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.4.12.150616, SenderIP=76.210.65.155 References: User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110305 Thunderbird/3.1.9 Cc: freebsd-current@freebsd.org Subject: Re: make release 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: Tue, 12 Apr 2011 15:14:30 -0000 On 04/12/11 10:02, George Kontostanos wrote: > I am trying to make a release with the following arguments: > > make release CHROOTDIR=/usr/home/current BUILDNAME=9-CURRENT > EXTSRCDIR=/usr/src NOPORTS=YES MAKE_ISOS=YES > > however /usr/home/current is being ignored completely and everything ends up > in /usr/obj/usr/src. Am I doing something wrong ? Following switching the default installer away from sysinstall, make release works differently now (see release(7), which has been updated to reflect the new release-building process). The closest analog to the command above (though you may want to do something different) is: cd /usr/src/release ./generate-release.sh head /usr/home/current -Nathan