From owner-freebsd-stable@freebsd.org Thu Oct 1 12:05:40 2015 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75C98A0DEF5 for ; Thu, 1 Oct 2015 12:05:40 +0000 (UTC) (envelope-from Mark.Martinec+freebsd@ijs.si) Received: from mail.ijs.si (mail.ijs.si [IPv6:2001:1470:ff80::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CE621972 for ; Thu, 1 Oct 2015 12:05:39 +0000 (UTC) (envelope-from Mark.Martinec+freebsd@ijs.si) Received: from amavis-ori.ijs.si (localhost [IPv6:::1]) by mail.ijs.si (Postfix) with ESMTP id 3nRY7M5pNFz1MY for ; Thu, 1 Oct 2015 14:05:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ijs.si; h= user-agent:message-id:references:in-reply-to:organization :subject:subject:from:from:date:date:content-transfer-encoding :content-type:content-type:mime-version:received:received :received:received; s=jakla4; t=1443701132; x=1446293133; bh=NDG Jqk6L4IBO0PDpreekcMLafSOEzgWyHUQe2lPzNSg=; b=WLgiH1L4b9vSpA7bBRM TRJKaVNqBAtiVRFe+6iyQjjjWxptukonER7LovDop65XkYx1Kx8XCUpm0aoKYUCp lYFfPwJnA0yxHAczR0VKeqIQptukUGTqmB7E2INlH3E9DLMl0+ivnNMwwSi1i8Gs WBnMsvuGDH55kTP8XIwAL8zQ= X-Virus-Scanned: amavisd-new at ijs.si Received: from mail.ijs.si ([IPv6:::1]) by amavis-ori.ijs.si (mail.ijs.si [IPv6:::1]) (amavisd-new, port 10026) with LMTP id 1y6qoyumpm4U for ; Thu, 1 Oct 2015 14:05:32 +0200 (CEST) Received: from mildred.ijs.si (mailbox.ijs.si [IPv6:2001:1470:ff80::143:1]) by mail.ijs.si (Postfix) with ESMTP id 3nRY7J6C6Pz1MT for ; Thu, 1 Oct 2015 14:05:32 +0200 (CEST) Received: from nabiralnik.ijs.si (nabiralnik.ijs.si [IPv6:2001:1470:ff80::80:16]) by mildred.ijs.si (Postfix) with ESMTP id 3nRY7J4G2hzvQ for ; Thu, 1 Oct 2015 14:05:32 +0200 (CEST) Received: from aaa.ijs.si (2001:1470:ff80::1812:1) by nabiralnik.ijs.si with HTTP (HTTP/1.1 POST); Thu, 01 Oct 2015 14:05:32 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Thu, 01 Oct 2015 14:05:32 +0200 From: Mark Martinec To: FreeBSD Stable Subject: Re: recommended poudriere jail versions? Organization: Jozef Stefan Institute In-Reply-To: <20151001103206.2d2603a4@efreet.kappastar.com> References: <20151001103206.2d2603a4@efreet.kappastar.com> Message-ID: X-Sender: Mark.Martinec+freebsd@ijs.si User-Agent: Roundcube Webmail/1.1.3 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2015 12:05:40 -0000 2015-10-01 10:32, Marko Cupać wrote: > what is the recommended poudriere jail version for building ports? So > far I was trying to be on latest binary patchlevel for every minor > version for both base system, poudriere jails and clients, but I ended > up with three jails just for amd64 (9.3, 10.1 and 10.2), where I need > to > rebuild all the ports every time I patch poudriere jails. This is > starting to take too much of my time. > > I see that pkg.freebsd.org hosts just one set of ports per > architecture of major version. What is the OS version they are built > on? Are there any downsides in building all the ports for > 10.2- on 10.1-? I used to have poudriere jails based on a minor version like you have, but ended up in a simplified setup, building ports only on 10.0-RELEASE and installing them on 10.1 or 10.2 and 10-STABLE. I think the official packages are also built based on 10.0-RELEASE . This mostly works, except for a port like virtualbox-ose-kmod, which causes a kernel crash when built on 10.0-RELEASE and run on 10.2. So after each ports upgrade when noticing that pkg is reinstalling virtualbox-ose-kmod, I re-build this one from ports on a target host, otherwise the next reboot will end up crashing on loading a vboxdrv kernel module during startup. Mark