[Buildroot] [PATCH] boot/at91bootstrap3: bump to v3.7.1

Angelo Compagnucci angelo.compagnucci at gmail.com
Wed Dec 3 16:18:25 UTC 2014


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 <angelo.compagnucci at gmail.com>
---
 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
-- 
2.2.0



More information about the buildroot mailing list