From patchwork Tue Sep 25 18:03:32 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Jacob_Bars=C3=B8e_Kj=C3=A6rgaard?= X-Patchwork-Id: 186874 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [130.225.254.102]) by ozlabs.org (Postfix) with ESMTP id E0E2A2C0083 for ; Wed, 26 Sep 2012 04:03:39 +1000 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 1F6E13F8B1 for ; Tue, 25 Sep 2012 20:03:35 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail02.prevas.se (mail02.prevas.se [62.95.78.10]) by hugin.dotsrc.org (Postfix) with ESMTPS id 061873F8B1 for ; Tue, 25 Sep 2012 20:03:32 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=7529; q=dns/txt; s=ironport2; t=1348596213; x=1380132213; h=from:to:subject:date:message-id:mime-version; bh=6/6eQm2uQpP38t8XDMqZAVgmvhxR6xE2u+m88Dxul8s=; b=ZK6kd5SMFQWO+d9AMrHZDFID56OH/TD80mkupmX7+JWXTBpIdoo4x63E 3r1ivZtQC6vXyvXh0w15y5IApToJnFhmOO/RVTcCVH9pO1J1s/W+ETnID MK0vjqtwEKyzuQ+; X-IronPort-AV: E=Sophos;i="4.80,484,1344204000"; d="scan'208,217,223";a="1667308" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport2.prevas.se with ESMTP/TLS/AES128-SHA; 25 Sep 2012 20:03:32 +0200 Received: from VMPREVAS1.prevas.se ([fe80::d582:e193:281c:3bc9]) by VMPREVAS3.prevas.se ([172.16.8.103]) with mapi id 14.02.0318.001; Tue, 25 Sep 2012 20:03:32 +0200 From: =?iso-8859-1?Q?Jacob_Bars=F8e_Kj=E6rgaard?= To: "dev@oe-lite.org" Subject: [PATCH] lib/oelite/arch.py: added bcm2708/bcm2835 arch support Thread-Topic: [PATCH] lib/oelite/arch.py: added bcm2708/bcm2835 arch support Thread-Index: Ac2bSBLy9nnWPEkgQs+61JDIsevHgg== Date: Tue, 25 Sep 2012 18:03:32 +0000 Message-ID: Accept-Language: da-DK, sv-SE, en-US Content-Language: da-DK X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [87.57.148.251] MIME-Version: 1.0 X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From 06a2fcc493bf5c5f00aef6fd81ee03d743ebf22e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20Bars=C3=B8e=20Kj=C3=A6rgaard?= Date: Fri, 24 Aug 2012 23:06:43 +0200 Subject: [PATCH] lib/oelite/arch.py: added bcm2708/bcm2835 arch support (Raspberry Pi) I just had to test patchwork:) To: dev@oe-lite.org --- lib/oelite/arch.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) -- 1.7.10 diff --git a/lib/oelite/arch.py b/lib/oelite/arch.py index 3922248..00eb06d 100644 --- a/lib/oelite/arch.py +++ b/lib/oelite/arch.py @@ -75,6 +75,27 @@ cpuspecs = { 'mcpu' : 'arm926ej-s', 'mtune' : 'arm926ej-s', }, + '1176jzfs' : { + 'march' : 'armv6', + 'mcpu' : 'arm1176jzf-s', + 'mtune' : 'arm1176jzf-s', + 'abi flags' : [ + ['float abi', 'hard', { + 'hard' : { + 'float' : 'hard', + 'fpu' : 'vfp', + }, + 'softfp' : { + 'float' : 'softfp', + 'fpu' : 'vfp', + }, + 'soft' : { + 'float' : 'soft', + }, + } + ] + ] + }, 'cortexa8' : { 'mcpu' : 'cortex-a8', 'mtune' : 'cortex-a8',