From patchwork Wed Dec 3 16:18:25 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Angelo Compagnucci X-Patchwork-Id: 417499 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 05CD11400E2 for ; Thu, 4 Dec 2014 03:18:42 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id E095F33DC8; Wed, 3 Dec 2014 16:18:41 +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 nE+73YtvnEEu; Wed, 3 Dec 2014 16:18:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 442B633457; Wed, 3 Dec 2014 16:18:40 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 261CD1C24A6 for ; Wed, 3 Dec 2014 16:18:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 215F6967E7 for ; Wed, 3 Dec 2014 16:18: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 gVGnuUSXIFBl for ; Wed, 3 Dec 2014 16:18:38 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) by hemlock.osuosl.org (Postfix) with ESMTPS id 696089666D for ; Wed, 3 Dec 2014 16:18:38 +0000 (UTC) Received: by mail-wi0-f179.google.com with SMTP id ex7so24998878wid.6 for ; Wed, 03 Dec 2014 08:18:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=kQpXAHxkLPBFgQi8Yc7AblFdcsu1IChTjECQZIMRqLY=; b=mD153a1R35DP3II1TiQk7QYW/rFAMHoWVRUELh2Wl3+JThczYjoFdXkSJdt+mIQUFE XMDtnmWNtHFcNixd2Eep3D/rMpxh3hUfhsk+sD0sw2bEfDCN3IO6VCh/c7VMwRWgYRPw jtsSeia4tjejfqjrnvvnWt5QhABpwtTPwhtxodrtI0egi5mLelFF6khQ3WE8h4GhnLNu RUb1cFAjuin6IMJBOypDerk6t9j+Kb4nO5TjM61n0DvXmfpAP6ysysKiTuLSLsLcb+1m SrjO66/fDqX4wdriiDXXRQZqoMERRDWktArJxqNjQg0ADeRUeSESSEsYBwL8MepMdU1B ECKg== X-Received: by 10.180.96.10 with SMTP id do10mr103350752wib.16.1417623516933; Wed, 03 Dec 2014 08:18:36 -0800 (PST) Received: from localhost.localdomain ([89.202.204.100]) by mx.google.com with ESMTPSA id l10sm51347134wif.20.2014.12.03.08.18.35 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 03 Dec 2014 08:18:36 -0800 (PST) From: Angelo Compagnucci To: buildroot@buildroot.org Date: Wed, 3 Dec 2014 17:18:25 +0100 Message-Id: <1417623505-5767-1-git-send-email-angelo.compagnucci@gmail.com> X-Mailer: git-send-email 2.2.0 Subject: [Buildroot] [PATCH] boot/at91bootstrap3: bump to v3.7.1 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 main difference with v3.6.2 is that this patch calls "make defconfig" before make. "make defconfig" is called by the Makefile with .config file, so the original logic isn't changed. Calling "make defconfig" is required to correctly prepare dependencies file. Signed-off-by: Angelo Compagnucci --- boot/at91bootstrap3/at91bootstrap3.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/boot/at91bootstrap3/at91bootstrap3.mk b/boot/at91bootstrap3/at91bootstrap3.mk index bc8d912..bb7e215 100644 --- a/boot/at91bootstrap3/at91bootstrap3.mk +++ b/boot/at91bootstrap3/at91bootstrap3.mk @@ -4,7 +4,7 @@ # ################################################################################ -AT91BOOTSTRAP3_VERSION = v3.6.2 +AT91BOOTSTRAP3_VERSION = v3.7.1 AT91BOOTSTRAP3_SITE = $(call github,linux4sam,at91bootstrap,$(AT91BOOTSTRAP3_VERSION)) AT91BOOTSTRAP3_INSTALL_IMAGES = YES @@ -41,7 +41,8 @@ define AT91BOOTSTRAP3_CONFIGURE_CMDS endef define AT91BOOTSTRAP3_BUILD_CMDS - $(MAKE) $(AT91BOOTSTRAP3_MAKE_OPTS) -C $(@D) boot + $(MAKE) $(AT91BOOTSTRAP3_MAKE_OPTS) -C $(@D) defconfig + $(MAKE) $(AT91BOOTSTRAP3_MAKE_OPTS) -C $(@D) endef define AT91BOOTSTRAP3_INSTALL_IMAGES_CMDS