From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SQ1Fo-0001EM-2b for garchives@archives.gentoo.org; Thu, 03 May 2012 18:59:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25705E07EC; Thu, 3 May 2012 18:59:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E8254E07EC for ; Thu, 3 May 2012 18:59:44 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5908F1B4045 for ; Thu, 3 May 2012 18:59:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 23973E542C for ; Thu, 3 May 2012 18:59:43 +0000 (UTC) From: "Raúl Porcel" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Raúl Porcel" Message-ID: <1336071494.2025317c5ae08e1204ad400f0fe3333806b0b3d6.armin76@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: /, modules/catalyst/arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: ChangeLog modules/catalyst/arch/arm.py X-VCS-Directories: / modules/catalyst/arch/ X-VCS-Committer: armin76 X-VCS-Committer-Name: Raúl Porcel X-VCS-Revision: 2025317c5ae08e1204ad400f0fe3333806b0b3d6 X-VCS-Branch: master Date: Thu, 3 May 2012 18:59:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 9e834f0b-3183-4d20-81ec-8f69ec65587d X-Archives-Hash: 3bf988bc7b9b4c52563169e044d815e6 commit: 2025317c5ae08e1204ad400f0fe3333806b0b3d6 Author: Ra=C3=BAl Porcel gentoo org> AuthorDate: Thu May 3 18:58:14 2012 +0000 Commit: Ra=C3=BAl Porcel gentoo org> CommitDate: Thu May 3 18:58:14 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/catalyst.git;= a=3Dcommit;h=3D2025317c Add armv6j_hardfp --- ChangeLog | 5 ++++- modules/catalyst/arch/arm.py | 8 ++++++++ 2 files changed, 12 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 965171a..c971efc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,11 @@ # ChangeLog for catalyst -# Copyright 1999-2011 Gentoo Foundation; 2008-2009 Various authors (see = AUTHORS) +# Copyright 1999-2012 Gentoo Foundation; 2008-2009 Various authors (see = AUTHORS) # Distributed under the GPL v2 # $Id$ =20 + 03 May 2012; Ra=C3=BAl Porcel modules/catalyst/ar= ch/arm.py: + Add armv6j_hardfp + 26 Jun 2011; Matt Turner targets/support/chroot-functions.sh: Don't run 'distcc-config --install' diff --git a/modules/catalyst/arch/arm.py b/modules/catalyst/arch/arm.py index 7740701..8a4ea9f 100644 --- a/modules/catalyst/arch/arm.py +++ b/modules/catalyst/arch/arm.py @@ -91,6 +91,13 @@ class arch_armv7a(generic_arm): self.settings["CHOST"]=3D"armv7a-unknown-linux-gnueabi" self.settings["CFLAGS"]+=3D" -march=3Darmv7-a -mfpu=3Dvfpv3-d16 -mfloa= t-abi=3Dsoftfp" =20 +class arch_armv6j_hardfp(generic_arm): + "Builder class for armv6j hardfloat target, needs >=3Dgcc-4.5" + def __init__(self,myspec): + generic_arm.__init__(self,myspec) + self.settings["CHOST"]=3D"armv6j-hardfloat-linux-gnueabi" + self.settings["CFLAGS"]+=3D" -march=3Darmv6j -mfpu=3Dvfp -mfloat-abi=3D= hard" + class arch_armv7a_hardfp(generic_arm): "Builder class for armv7a hardfloat target, needs >=3Dgcc-4.5" def __init__(self,myspec): @@ -116,6 +123,7 @@ _subarch_map =3D { "armv6z" : arch_armv6z, "armv6zk" : arch_armv6zk, "armv7a" : arch_armv7a, + "armv6j_hardfp" : arch_armv6j_hardfp, "armv7a_hardfp" : arch_armv7a_hardfp, "armeb" : arch_armeb, "armv5teb" : arch_armv5teb