From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by nuthatch.gentoo.org with esmtp (Exim 4.62) (envelope-from ) id 1GyRaP-0004xR-3G for garchives@archives.gentoo.org; Sun, 24 Dec 2006 11:32:13 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.13.8/8.13.8) with SMTP id kBOBVj5h018155; Sun, 24 Dec 2006 11:31:45 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by robin.gentoo.org (8.13.8/8.13.8) with ESMTP id kBOBViJc017300 for ; Sun, 24 Dec 2006 11:31:44 GMT Received: from home.wh0rd.org (pool-141-154-225-206.bos.east.verizon.net [141.154.225.206]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id D8332644D0 for ; Sun, 24 Dec 2006 11:31:43 +0000 (UTC) Received: (qmail 7888 invoked from network); 24 Dec 2006 06:28:20 -0500 Received: from unknown (HELO vapier) (192.168.0.2) by 192.168.0.1 with SMTP; 24 Dec 2006 06:28:20 -0500 From: Mike Frysinger Organization: wh0rd.org To: gentoo-catalyst@gentoo.org Subject: [gentoo-catalyst] [patch] update sparc.py's personality bin check Date: Sun, 24 Dec 2006 06:32:09 -0500 User-Agent: KMail/1.9.5 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_6UmjFoYnl6RRsq0" Message-Id: <200612240632.10235.vapier@gentoo.org> X-Archives-Salt: 58302895-fe32-4340-a051-adef7aa7829e X-Archives-Hash: d92b59dd54e651f9f7c149ac2de8f412 --Boundary-00=_6UmjFoYnl6RRsq0 Content-Type: multipart/signed; boundary="nextPart8731419.Ayqs9d344f"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit --nextPart8731419.Ayqs9d344f Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline sparc no longer uses sparc32 / sparc-utils to change personalities on the=20 fly ... rather it should use linux32 / setarch like everyone else =2Dmike --nextPart8731419.Ayqs9d344f Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iQIVAwUARY5lOkFjO5/oN/WBAQIfiBAA3eyyBcczzAoGB81ZZWemKDtU7f6tFNzp AKTYFAkXA0Wyr9bX79oZd10P9v+IUzXB2XN/1/VmL/0KYvo/8XPRYAf8Pc5ADDyO c7pUevtUPuttdnSV6dZae0IWdVeBf+3ezu0zmDny3o6RP2tkpCy+wSNu7TJqvDj9 +GdyNZBXhgyGhDjBnY3XMK8GGv60brW5qdyhftz4EsfcdO+pccBWBgAld3vtnH/j S7UXenHEmBJizloQHKztvNrvhEpTODhvtp/ho94h/LoScvSs1rSdUTFmizsVwOBl CgbqEMhFjSPGyInbvKAyArgZa+KHBUmEutM8QT6MAbW9HP6FR0zV4xc8iP95jC6c csbmjYeJcJxpdLHetC0gP1WnITfUn4VRjAmZIy8hB/gEJmRgv4Y6EHjuGtQtDVPT FWubvl78dwynvlwkwinPrWtl8fW7DssQ5HjpWwjl2SFpVkhPZ3WLw+uSxMeSlILA 1hmIYxjsx5p/FNNHs3QPwLQJdnv2QP0eHy4UkW+7NtWSoXdzCmGDlDMvmamr4rgD OdTwxxVsXkKyBVtTq8WMUHhp6lpnVkn0wZ2Pe5FVDvPeBIIA3rDYsH5Wgsr0K9Hr OijvSZo/M7LkWfCglLCbHDWFF+GVihIXPv9CbDF4nq0+WX3ChggfwUjSjSksGZK6 aPA+3rjHHCY= =EjSc -----END PGP SIGNATURE----- --nextPart8731419.Ayqs9d344f-- --Boundary-00=_6UmjFoYnl6RRsq0 Content-Type: text/x-diff; charset="us-ascii"; name="catalyst-sparc-setarch.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="catalyst-sparc-setarch.patch" Index: arch/sparc.py =================================================================== RCS file: /var/cvsroot/gentoo/src/catalyst/arch/sparc.py,v retrieving revision 1.9 diff -u -p -r1.9 sparc.py --- arch/sparc.py 2 Oct 2006 20:41:53 -0000 1.9 +++ arch/sparc.py 24 Dec 2006 11:30:39 -0000 @@ -9,9 +9,9 @@ class generic_sparc(builder.generic): builder.generic.__init__(self,myspec) self.settings["mainarch"]="sparc" if self.settings["hostarch"]=="sparc64": - if not os.path.exists("/bin/sparc32"): - raise CatalystError,"required /bin/sparc32 executable not found (\"emerge sparc-utils\" to fix.)" - self.settings["CHROOT"]="/bin/sparc32 chroot" + if not os.path.exists("/bin/linux32"): + raise CatalystError,"required /bin/linux32 executable not found (\"emerge setarch\" to fix.)" + self.settings["CHROOT"]="linux32 chroot" else: self.settings["CHROOT"]="chroot" --Boundary-00=_6UmjFoYnl6RRsq0-- -- gentoo-catalyst@gentoo.org mailing list