From patchwork Thu May 5 15:30:28 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 618989 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 3r0zQ81ycfz9sCp for ; Fri, 6 May 2016 01:30:56 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=Ay3lJnNi; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 325BFC0363; Thu, 5 May 2016 15:30:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fEUjRxqxAPOp; Thu, 5 May 2016 15:30:48 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7C3D7C0365; Thu, 5 May 2016 15:30:45 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D04B61C2B76 for ; Thu, 5 May 2016 15:30:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CBCDB896D7 for ; Thu, 5 May 2016 15:30:41 +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 TZAtseP0cANY for ; Thu, 5 May 2016 15:30:40 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [176.9.42.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 1160F8783D for ; Thu, 5 May 2016 15:30:39 +0000 (UTC) Received: from asgard (cpe-186-22-138-122.telecentro-reversos.com.ar [186.22.138.122] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.15.1/8.15.1) with ESMTPSA id u45FUWt3024120 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 5 May 2016 15:30:35 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1462462237; bh=0p6yXLQjXgiioKvZ8ezAr7JZqotPa3jQy5d2qkujwaU=; h=From:To:Cc:Subject:Date; b=Ay3lJnNiiZndxpWAriY4omsSIKToymsERettDgwZMU+DErBjhgQ5J6eNpYq4O46DA 23iqrJFWB0V7oE5zdz3pnkwjrrGmETjZ0hF0clMTzRL7w037wgZmOEPh+H8iEKdT1T lZ4teVPRqMhqbHMSEGNMjd+lLiIVt3wnMO9qMOAo= Received: by asgard (sSMTP sendmail emulation); Thu, 05 May 2016 12:30:30 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 5 May 2016 12:30:28 -0300 Message-Id: <1462462230-30078-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.7.3 X-Virus-Scanned: clamav-milter 0.98.7 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH 1/3] configs/freescale_mpc8315erdb: lock down binutils version 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" The used U-Boot version (2014.04) isn't too happy with newer (>= 2.25) binutils versions, so keep it locked down until the config is updated for a newer version. U-Boot 2016.03 in fact does work for mpc8315erdb - however it doesn't yet support SPL which is necessary for NAND boot and would be a massive defconfig revamp switching to NOR. Signed-off-by: Gustavo Zacarias --- configs/freescale_mpc8315erdb_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/freescale_mpc8315erdb_defconfig b/configs/freescale_mpc8315erdb_defconfig index 457736e..b931471 100644 --- a/configs/freescale_mpc8315erdb_defconfig +++ b/configs/freescale_mpc8315erdb_defconfig @@ -28,6 +28,8 @@ BR2_TARGET_GENERIC_GETTY=y BR2_TARGET_GENERIC_GETTY_PORT="ttyS0" # Bootloader +# Lock down binutils to <2.25 to avoid U-Boot build failure +BR2_BINUTILS_VERSION_2_24_X=y BR2_TARGET_UBOOT=y BR2_TARGET_UBOOT_BOARDNAME="MPC8315ERDB_NAND" BR2_TARGET_UBOOT_CUSTOM_VERSION=y