From owner-freebsd-questions@FreeBSD.ORG Fri Jul 23 16:13:43 2004 Return-Path: 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 7456E16A4CE for ; Fri, 23 Jul 2004 16:13:43 +0000 (GMT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37B7043D53 for ; Fri, 23 Jul 2004 16:13:43 +0000 (GMT) (envelope-from cvance@chrisandkaren.net) Received: from chrisandkaren.net ([68.55.156.112]) by comcast.net (rwcrmhc12) with ESMTP id <2004072316134101400f49dpe>; Fri, 23 Jul 2004 16:13:42 +0000 Received: from [10.1.1.25] (sony.apt [10.1.1.25]) by chrisandkaren.net (8.11.0/8.11.0) with ESMTP id i6NGBJc79294; Fri, 23 Jul 2004 12:11:20 -0400 (EDT) (envelope-from cvance@chrisandkaren.net) Message-ID: <4101397E.3080904@chrisandkaren.net> Date: Fri, 23 Jul 2004 12:14:54 -0400 From: Chris Vance User-Agent: Mozilla Thunderbird 0.6 (X11/20040528) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Darren Pilgrim References: <001301c46dfc$c1d7fb80$132a15ac@spud> In-Reply-To: <001301c46dfc$c1d7fb80$132a15ac@spud> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: 'Sergey Zaharchenko' cc: questions@freebsd.org Subject: Re: How to install a custom built world+kernel to a machine with no OS? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jul 2004 16:13:43 -0000 Darren Pilgrim wrote: >>From: Sergey Zaharchenko [mailto:doublef@tele-kom.ru] >> >>On Mon, Jul 19, 2004 at 04:21:09AM -0700, >> Darren Pilgrim probably wrote: >> >>>What do I need to us to accomplish the above? >> >>man release. > > > Is there a way to skip the build portions of `make release` and just create > the distributions and ISOs with what's already built? I typically use: setenv CVSROOT foo time make -DNOPORTS -DNODOC -DMAKE_ISOS release CHROOTDIR=/usr/release EXTSRCDIR=/usr/src > & /tmp/release.out This presumes you've already done a buildworld in /usr/src; it will also use that version of the source code, rather than pulling everything down from the CVS server. Because of the way the release process uses a chroot environment, it's still going to have to re-build everything. So, it's quite a time-intensive operation no matter how many shortcuts you take. chris.