From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/2392 Path: news.gmane.org!not-for-mail From: Rob Landley Newsgroups: gmane.linux.lib.musl.general,gmane.linux.sabotage.general Subject: Re: [ANN] sabotage mips(el) 0.9.7+ rootfs tarballs are available Date: Sat, 01 Dec 2012 01:01:28 -0600 Message-ID: <1354345288.2190.31@driftwood> References: <50B96E0F.3030902@barfooze.de> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; DelSp=Yes; Format=Flowed Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1354345305 31028 80.91.229.3 (1 Dec 2012 07:01:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 1 Dec 2012 07:01:45 +0000 (UTC) Cc: sabotage@lists.openwall.com To: musl@lists.openwall.com Original-X-From: musl-return-2393-gllmg-musl=m.gmane.org@lists.openwall.com Sat Dec 01 08:01:58 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1Teh5G-00016h-9h for gllmg-musl@plane.gmane.org; Sat, 01 Dec 2012 08:01:54 +0100 Original-Received: (qmail 20007 invoked by uid 550); 1 Dec 2012 07:01:42 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 19998 invoked from network); 1 Dec 2012 07:01:42 -0000 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:subject:to:cc:in-reply-to:x-mailer:message-id :mime-version:content-type:content-disposition :content-transfer-encoding:x-gm-message-state; bh=ODQ4wbaxSwxEpQiYqg0ttATr6A6GdsTv4TPSGdkE6yk=; b=OzfVsti1lUrhaK9xCq9q3cBH6ISGK3vefAsXrt/UML9V0O/tn6eSlcvHj5KPLBszc7 Ej9DL5VdX7vqptepGSuGfDjYZ324/PU7PLA2GaNQqtvrA/oaEU92OVbj1CvwZ9ux2obI EdcoBmtN5D8xLy8xyRTez1ZhLw6W+w8IXQtJUVyP0b7L+4LujSRbhcUH6wYyDg8jN5zt NRBUr5M1Z+7zpMUXlskB4tBTINAIkyqwJtVdfX1i8CVesdU9eVVzhNEX4hb/tDl9m7om 9sV+vIze5/zumhmEn2nrTGXU1Mmf7eMCJ+5xLSBuDG3s/8YPi0qswcBsZLgP+ujB1e5H 7dRA== In-Reply-To: <50B96E0F.3030902@barfooze.de> (from maillist-musl@barfooze.de on Fri Nov 30 20:40:15 2012) X-Mailer: Balsa 2.4.11 Content-Disposition: inline X-Gm-Message-State: ALoCoQl468MQPOg6RSEezDPuZza4t2i8aHP81hytMWByPF7Y0ZTxPzuVoHFLsCXjwglwSyaovp7e Xref: news.gmane.org gmane.linux.lib.musl.general:2392 gmane.linux.sabotage.general:20 Archived-At: On 11/30/2012 08:40:15 PM, John Spencer wrote: >=20 > this is based on musl 0.9.7, with all mips patches applied. > so it really is more or less 0.9.8 minus the ppc port. >=20 > it takes about 2-3 weeks to get everything built in qemu mips, > so i didnt restart the build when 0.9.8 came out. Wow, really? Beyond distcc, I looked at cluster based approaches but they all =20 leverage distro repositories. Basically you have a "master" node that =20 hands out work to "slave" nodes which start out all using the same =20 filesystem, the master works otu which packages it can build with out =20 dependencies and hands them out to the "slave" nodes, which build them, =20 create a binary package (.rpm, .deb, the portage binary thing, etc) and =20 sends it back to the "master" node which loads them into the =20 repository. The master then hands out more work to the idle slave nodes =20 using only packages which have prerequisites that can be installed from =20 the repository rather than built. (I looked into having them all share a network root filesystem and =20 having the master node update it, but running ./configure while a =20 package shows up out from under you is kinky.) I also covered setting up tun/tap for kvm/qemu here: http://landley.net/lxc/02-networking.html (That covers more than you'd need, but if you have a 4-way machine you =20 can get a small cluster setup that way, and each qemu instance gets a =20 cpu to itself...) Rob=