From owner-freebsd-questions@FreeBSD.ORG Thu Jul 14 00:10:55 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3CCB316A41C for ; Thu, 14 Jul 2005 00:10:55 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from server.t-hosting.hu (server.t-hosting.hu [217.20.133.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB47943D46 for ; Thu, 14 Jul 2005 00:10:54 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from localhost (localhost [127.0.0.1]) by server.t-hosting.hu (Postfix) with ESMTP id 77184997824; Thu, 14 Jul 2005 02:10:52 +0200 (CEST) Received: from server.t-hosting.hu ([127.0.0.1]) by localhost (server.t-hosting.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 64810-02; Thu, 14 Jul 2005 02:10:49 +0200 (CEST) Received: from [80.98.156.20] (catv-50629c14.catv.broadband.hu [80.98.156.20]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by server.t-hosting.hu (Postfix) with ESMTP id 15A819977A7; Thu, 14 Jul 2005 02:10:49 +0200 (CEST) Message-ID: <42D5AD87.9020401@t-hosting.hu> Date: Thu, 14 Jul 2005 02:10:47 +0200 From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jonathan Beit-Aharon References: <42D54884.2010409@intrusic.com> In-Reply-To: <42D54884.2010409@intrusic.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at t-hosting.hu Cc: freebsd-questions@freebsd.org Subject: Re: Building an ISO for CD release of a custom FreeBSD 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2005 00:10:55 -0000 Jonathan Beit-Aharon wrote: > I tried the following: > > cd /usr/src/release > make release CHROOTDIR=/usr/v54export BUILDNAME=FBSD54_050712 > RELEASETAG=RELENG_5 \ > CVSROOT=:pserver:anoncvs@anoncvs.FreeBSD.org:/home/ncvs > EXTSRCDIR=/usr/src \ > MAKE_ISOS=/usr/v54export COMPAT_DISTS=compat4x > OTHER_DISTS=manpages \ > NOPORTS=YES > > It complained that the connection to the CVS repository is being > refused. I tried changing the CVSROOT to :pserver:freebsdanoncvs@... > but that and several other protocol variations didn't help. I can't > see why -- does anyone know/care? Is there a simple way to overcome > this obstacle (is the documentation wrong/typo'ed)? > There are three main components of a custom install disc: Distributions (binaries), documentations, ports collection. As for the binaries, they are built from /usr/src since You use EXTRCDIR macro. As for ports collection, it won't be integrated since You specified NOPORTS=YES. As for documentation, it will be built from the CVS repository if You don't specify EXTDOCDIR, so the documentation will be checked out from the repository and You can only specify a local directory where the CVS repository is mirrored, afaik. I haven't seen any example that used that pserver address. So You'd better mirror it with CVSup and then You could specify such /usr/home/ncvs, if your mirror is located under /usr/home/ncvs Cheers, Gábor Kövesdán