From patchwork Sat Aug 22 20:01:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Beno=C3=AEt_Th=C3=A9baudeau?= X-Patchwork-Id: 509725 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 36F74140761 for ; Sun, 23 Aug 2015 06:01:42 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 55F5E95AF8; Sat, 22 Aug 2015 20:01:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZYEDk3B0wVdA; Sat, 22 Aug 2015 20:01:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 05BAA95A78; Sat, 22 Aug 2015 20:01:40 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 48A711C1619 for ; Sat, 22 Aug 2015 20:01:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 424A995AB5 for ; Sat, 22 Aug 2015 20:01:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id teqLLNWl5+De for ; Sat, 22 Aug 2015 20:01:37 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from authsmtp.register.it (authsmtp75.register.it [195.110.101.59]) by hemlock.osuosl.org (Postfix) with ESMTP id 8EC9295A78 for ; Sat, 22 Aug 2015 20:01:36 +0000 (UTC) Received: from localhost.localdomain ([88.172.188.148]) by paganini34 with id 7w1W1r00y3CYkgw01w1ZVm; Sat, 22 Aug 2015 22:01:35 +0200 X-Rid: benoit@wsystem.com@88.172.188.148 From: =?UTF-8?q?Beno=C3=AEt=20Th=C3=A9baudeau?= To: buildroot@buildroot.org Date: Sat, 22 Aug 2015 22:01:25 +0200 Message-Id: <1440273688-92868-1-git-send-email-benoit@wsystem.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <20150820143005.GA6441@ketchup.mtl.sfl> References: <20150820143005.GA6441@ketchup.mtl.sfl> MIME-Version: 1.0 Cc: =?UTF-8?q?Beno=C3=AEt=20Th=C3=A9baudeau?= Subject: [Buildroot] [PATCH 1/4] configs/raspberrypi: use EABIhf X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" The SoC of the Raspberry Pi 1 is an ARM1176JZF-S, which features a VFPv2 FPU, so use the EABIhf target ABI, which is more efficient than EABI. This is also the default on Raspbian. Signed-off-by: Benoît Thébaudeau --- configs/raspberrypi_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/raspberrypi_defconfig b/configs/raspberrypi_defconfig index af702a3..2d47058 100644 --- a/configs/raspberrypi_defconfig +++ b/configs/raspberrypi_defconfig @@ -1,5 +1,6 @@ BR2_arm=y BR2_arm1176jzf_s=y +BR2_ARM_EABIHF=y BR2_TARGET_GENERIC_GETTY_PORT="tty1"