From owner-freebsd-questions@FreeBSD.ORG Wed Sep 6 18:16:09 2006 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 8D3DF16A4DF for ; Wed, 6 Sep 2006 18:16:09 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id E633343D69 for ; Wed, 6 Sep 2006 18:16:03 +0000 (GMT) (envelope-from illoai@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so1203481nzn for ; Wed, 06 Sep 2006 11:16:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ebAb+gJoiFMJCdGw2KUmp0Kul+eFHJi5YbJ/RTGNwQIjtNEMU5o5MNxqZmft6eKIAv8XEjFY4wgV7JQfBPBkjr8bZYOitDCGEfNdh3M9urQOfoIOrsZHRX2G5TN0Aw/CQcmm9YjVomMqiYmpIuf04nk2cxS57BcFnHfbJr8DoSY= Received: by 10.65.81.19 with SMTP id i19mr8985965qbl; Wed, 06 Sep 2006 11:16:03 -0700 (PDT) Received: by 10.64.84.5 with HTTP; Wed, 6 Sep 2006 11:16:02 -0700 (PDT) Message-ID: Date: Wed, 6 Sep 2006 13:16:02 -0500 From: "illoai@gmail.com" To: "Jonathan Horne" In-Reply-To: <42858.167.246.36.14.1157552428.squirrel@webmail.dfwlp.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <42858.167.246.36.14.1157552428.squirrel@webmail.dfwlp.org> Cc: freebsd-questions@freebsd.org Subject: Re: can i build more than one world on a buildserver? 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: Wed, 06 Sep 2006 18:16:09 -0000 On 9/6/06, Jonathan Horne wrote: > is it possible to have STABLE and RELENG built on a single build server? > or further, is it possible to have 5.5 and 6.1 worlds built from the same > machine? buildworld and buildkernel targets are fairly sophisticated. The /usr/obj tree corresponds to the source directory, so if you have your 5.5 sources in /src/5.5 and your 6.1 sources in /src/6.1 (or /usr/src/6.1 for that matter) the world(s) would be built in /usr/obj/src/5.5/ and /usr/obj/src/6.1/ repsectively. (Or /usr/obj/usr/src/6.1) If the purpose is to buildworld on one fast machine and then export it to slower machines on th' network, this works admirably well. -- --