Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] u-boot: version bump to 2010.09
@ 2010-11-16 14:16 Mike Frysinger
  2010-11-16 14:43 ` Thomas Petazzoni
  2010-12-12 18:27 ` [Buildroot] [PATCH v2] " Mike Frysinger
  0 siblings, 2 replies; 3+ messages in thread
From: Mike Frysinger @ 2010-11-16 14:16 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 boot/u-boot/Config.in |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/boot/u-boot/Config.in b/boot/u-boot/Config.in
index ce79a8a..86c656d 100644
--- a/boot/u-boot/Config.in
+++ b/boot/u-boot/Config.in
@@ -12,10 +12,13 @@ config BR2_TARGET_UBOOT_BOARDNAME
 
 choice
 	prompt "U-Boot Version"
-	default BR2_TARGET_UBOOT_2010_06
+	default BR2_TARGET_UBOOT_2010_09
 	help
 	  Select the specific U-Boot version you want to use
 
+config BR2_TARGET_UBOOT_2010_09
+	bool "2010.09"
+
 config BR2_TARGET_UBOOT_2010_06
 	bool "2010.06"
 
@@ -42,6 +45,7 @@ endif
 
 config BR2_TARGET_UBOOT_VERSION
 	string
+	default "2010.09"	if BR2_TARGET_UBOOT_2010_09
 	default "2010.06"	if BR2_TARGET_UBOOT_2010_06
 	default "2010.03"	if BR2_TARGET_UBOOT_2010_03
 	default "2009.11"	if BR2_TARGET_UBOOT_2009_11
-- 
1.7.3.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] u-boot: version bump to 2010.09
  2010-11-16 14:16 [Buildroot] [PATCH] u-boot: version bump to 2010.09 Mike Frysinger
@ 2010-11-16 14:43 ` Thomas Petazzoni
  2010-12-12 18:27 ` [Buildroot] [PATCH v2] " Mike Frysinger
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2010-11-16 14:43 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue, 16 Nov 2010 09:16:17 -0500
Mike Frysinger <vapier@gentoo.org> wrote:

> Signed-off-by: Mike Frysinger <vapier@gentoo.org>

I already had this scheduled for inclusion in 2011.02, at
http://git.buildroot.net/~tpetazzoni/git/buildroot/commit/?h=for-2010.11/boards-cleanup&id=9887e37546d8d7965248032e9069965048967976
(yes, the name of the branch mentions 2010.11, but I didn't had the
time to complete this work before 2010.11-rc1).

So, if Peter is ok with this bump in 2010.11, your patch gets my:

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH v2] u-boot: version bump to 2010.09
  2010-11-16 14:16 [Buildroot] [PATCH] u-boot: version bump to 2010.09 Mike Frysinger
  2010-11-16 14:43 ` Thomas Petazzoni
@ 2010-12-12 18:27 ` Mike Frysinger
  1 sibling, 0 replies; 3+ messages in thread
From: Mike Frysinger @ 2010-12-12 18:27 UTC (permalink / raw)
  To: buildroot

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
v2
	- also set update mkimage fallback to 2010.09

 boot/u-boot/Config.in |    6 +++++-
 boot/u-boot/u-boot.mk |    2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/boot/u-boot/Config.in b/boot/u-boot/Config.in
index ce79a8a..86c656d 100644
--- a/boot/u-boot/Config.in
+++ b/boot/u-boot/Config.in
@@ -12,10 +12,13 @@ config BR2_TARGET_UBOOT_BOARDNAME
 
 choice
 	prompt "U-Boot Version"
-	default BR2_TARGET_UBOOT_2010_06
+	default BR2_TARGET_UBOOT_2010_09
 	help
 	  Select the specific U-Boot version you want to use
 
+config BR2_TARGET_UBOOT_2010_09
+	bool "2010.09"
+
 config BR2_TARGET_UBOOT_2010_06
 	bool "2010.06"
 
@@ -42,6 +45,7 @@ endif
 
 config BR2_TARGET_UBOOT_VERSION
 	string
+	default "2010.09"	if BR2_TARGET_UBOOT_2010_09
 	default "2010.06"	if BR2_TARGET_UBOOT_2010_06
 	default "2010.03"	if BR2_TARGET_UBOOT_2010_03
 	default "2009.11"	if BR2_TARGET_UBOOT_2009_11
diff --git a/boot/u-boot/u-boot.mk b/boot/u-boot/u-boot.mk
index 9719207..99615c8 100644
--- a/boot/u-boot/u-boot.mk
+++ b/boot/u-boot/u-boot.mk
@@ -11,7 +11,7 @@ U_BOOT_BOARD_NAME:=$(call qstrip,$(BR2_TARGET_UBOOT_BOARDNAME))
 # pick some random stable U-Boot version that will be used just to
 # build mkimage.
 ifeq ($(U_BOOT_VERSION),)
-U_BOOT_VERSION=2010.03
+U_BOOT_VERSION=2010.09
 endif
 
 ifeq ($(U_BOOT_VERSION),custom)
-- 
1.7.3.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-12-12 18:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-16 14:16 [Buildroot] [PATCH] u-boot: version bump to 2010.09 Mike Frysinger
2010-11-16 14:43 ` Thomas Petazzoni
2010-12-12 18:27 ` [Buildroot] [PATCH v2] " Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox