From patchwork Wed Nov 6 19:45:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 288992 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 7C8552C008F for ; Thu, 7 Nov 2013 06:45:20 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id F057032FAB; Wed, 6 Nov 2013 19:45:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cd33F-80iH+w; Wed, 6 Nov 2013 19:45:18 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id D403E32F5B; Wed, 6 Nov 2013 19:45:17 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 62B6D1BF84E for ; Wed, 6 Nov 2013 19:45:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5D0A18D198 for ; Wed, 6 Nov 2013 19:45:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3z1yR+PQJXaW for ; Wed, 6 Nov 2013 19:45:15 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by whitealder.osuosl.org (Postfix) with ESMTPS id 1CB128D121 for ; Wed, 6 Nov 2013 19:45:14 +0000 (UTC) Received: by mail-we0-f182.google.com with SMTP id t61so5466462wes.13 for ; Wed, 06 Nov 2013 11:45:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=N0GWpBWsfpobRMepGcnQmW4ya6PFYqfk78Ycq3IcD+c=; b=qdbLWGRuX1TZgtNLcFLf+vOTwy4iUlwyJwukUphCsI9EtBtX0hx5TU+DtPrhkAF6M0 1DDfKs8bIsyfKrU1NledvB4rFSBuuzV12XNJ+ZZ0rCzh4C52AxW8v25aecG5RDYzstHK CVfXxIDnXg0pct3c3AY/7auPPqK0sYsmw0LCcBsI5x3E/kKivNTxOUVsXfc9abJbTdl7 0PAkeTli8sYzgAENEcDH/u9PD5L5UTjPQZKdV0iCQXtvu/uXQHW1kVVrBA2pImBS+EeC pIHnRiVFgP3wtmOjicKbHeJh/nRLtW+6MgbTHlTCKXdCsgeGHe0/k99jUDb+abGMOybD 1nGQ== X-Received: by 10.180.108.131 with SMTP id hk3mr22566104wib.10.1383767113367; Wed, 06 Nov 2013 11:45:13 -0800 (PST) Received: from percy.lan (host-92-24-119-175.ppp.as43234.net. [92.24.119.175]) by mx.google.com with ESMTPSA id e1sm28062104wij.6.2013.11.06.11.45.11 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 06 Nov 2013 11:45:12 -0800 (PST) From: spdawson@gmail.com To: buildroot@busybox.net Date: Wed, 6 Nov 2013 19:45:10 +0000 Message-Id: <1383767110-32444-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] avr32: pass target arch to gcc X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net From: Simon Dawson As suggested with Alexander Lukichev and Thomas Petazzoni on the mailing list, only one of the two avr32 microarchitectures is relevant for Buildroot: avr32 Linux implies the avr32b microarchitecure, as used in the ap7000. Signed-off-by: Simon Dawson --- arch/Config.in.avr32 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/Config.in.avr32 b/arch/Config.in.avr32 index 199c150..8429589 100644 --- a/arch/Config.in.avr32 +++ b/arch/Config.in.avr32 @@ -3,3 +3,6 @@ config BR2_ARCH config BR2_ENDIAN default "BIG" + +config BR2_GCC_TARGET_ARCH + default "ap"