Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] kernel-headers: add 3.5.x and bump 3.{0, 2, 4}.x stable versions
@ 2012-09-04 12:00 Gustavo Zacarias
  2012-09-04 12:00 ` [Buildroot] [PATCH 2/3] linux: bump default to kernel version 3.5.3 Gustavo Zacarias
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Gustavo Zacarias @ 2012-09-04 12:00 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 toolchain/kernel-headers/Config.in                 |   12 ++++++++----
 ...all-fix-__packed-in-exported-kernel-head.patch} |    0
 2 files changed, 8 insertions(+), 4 deletions(-)
 rename toolchain/kernel-headers/{linux-3.0.40-headers_install-fix-__packed-in-exported-kernel-head.patch => linux-3.0.41-headers_install-fix-__packed-in-exported-kernel-head.patch} (100%)

diff --git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in
index dc5c2ad..d35aed2 100644
--- a/toolchain/kernel-headers/Config.in
+++ b/toolchain/kernel-headers/Config.in
@@ -6,7 +6,7 @@ comment "Kernel Header Options"
 
 choice
 	prompt "Kernel Headers"
-	default BR2_KERNEL_HEADERS_3_4
+	default BR2_KERNEL_HEADERS_3_5
 	help
 	  Select the version of kernel header files you wish to use.
 	  You must select the correct set of header files to match
@@ -44,6 +44,9 @@ choice
 	config BR2_KERNEL_HEADERS_3_4
 		bool "Linux 3.4.x kernel headers"
 
+	config BR2_KERNEL_HEADERS_3_5
+		bool "Linux 3.5.x kernel headers"
+
 	config BR2_KERNEL_HEADERS_VERSION
 		bool "Linux 2.6 (manually specified version)"
 
@@ -64,10 +67,11 @@ config BR2_DEFAULT_KERNEL_HEADERS
 	default "2.6.37.6"	if BR2_KERNEL_HEADERS_2_6_37
 	default "2.6.38.8"	if BR2_KERNEL_HEADERS_2_6_38
 	default "2.6.39.4"	if BR2_KERNEL_HEADERS_2_6_39
-	default "3.0.40"	if BR2_KERNEL_HEADERS_3_0
+	default "3.0.42"	if BR2_KERNEL_HEADERS_3_0
 	default "3.1.10"	if BR2_KERNEL_HEADERS_3_1
-	default "3.2.26"	if BR2_KERNEL_HEADERS_3_2
+	default "3.2.28"	if BR2_KERNEL_HEADERS_3_2
 	default "3.3.8"		if BR2_KERNEL_HEADERS_3_3
-	default "3.4.8"		if BR2_KERNEL_HEADERS_3_4
+	default "3.4.10"	if BR2_KERNEL_HEADERS_3_4
+	default "3.5.3"		if BR2_KERNEL_HEADERS_3_5
 	default "2.6"		if BR2_KERNEL_HEADERS_SNAP
 	default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
diff --git a/toolchain/kernel-headers/linux-3.0.40-headers_install-fix-__packed-in-exported-kernel-head.patch b/toolchain/kernel-headers/linux-3.0.41-headers_install-fix-__packed-in-exported-kernel-head.patch
similarity index 100%
rename from toolchain/kernel-headers/linux-3.0.40-headers_install-fix-__packed-in-exported-kernel-head.patch
rename to toolchain/kernel-headers/linux-3.0.41-headers_install-fix-__packed-in-exported-kernel-head.patch
-- 
1.7.8.6

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

* [Buildroot] [PATCH 2/3] linux: bump default to kernel version 3.5.3
  2012-09-04 12:00 [Buildroot] [PATCH 1/3] kernel-headers: add 3.5.x and bump 3.{0, 2, 4}.x stable versions Gustavo Zacarias
@ 2012-09-04 12:00 ` Gustavo Zacarias
  2012-09-04 13:50   ` Peter Korsgaard
  2012-09-04 12:00 ` [Buildroot] [PATCH 3/3] u-boot: add version 2012.07 Gustavo Zacarias
  2012-09-04 13:49 ` [Buildroot] [PATCH 1/3] kernel-headers: add 3.5.x and bump 3.{0, 2, 4}.x stable versions Peter Korsgaard
  2 siblings, 1 reply; 8+ messages in thread
From: Gustavo Zacarias @ 2012-09-04 12:00 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 linux/Config.in |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/linux/Config.in b/linux/Config.in
index 0306348..30cb5ed 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -19,10 +19,10 @@ if BR2_LINUX_KERNEL
 #
 choice
 	prompt "Kernel version"
-	default BR2_LINUX_KERNEL_3_4
+	default BR2_LINUX_KERNEL_3_5
 
-config BR2_LINUX_KERNEL_3_4
-	bool "3.4.8"
+config BR2_LINUX_KERNEL_3_5
+	bool "3.5.3"
 
 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
 	bool "Same as toolchain kernel headers"
@@ -77,7 +77,7 @@ config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
 
 config BR2_LINUX_KERNEL_VERSION
 	string
-	default "3.4.8" if BR2_LINUX_KERNEL_3_4
+	default "3.5.3" if BR2_LINUX_KERNEL_3_5
 	default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS
 	default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE if BR2_LINUX_KERNEL_CUSTOM_VERSION
 	default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL
-- 
1.7.8.6

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

* [Buildroot] [PATCH 3/3] u-boot: add version 2012.07
  2012-09-04 12:00 [Buildroot] [PATCH 1/3] kernel-headers: add 3.5.x and bump 3.{0, 2, 4}.x stable versions Gustavo Zacarias
  2012-09-04 12:00 ` [Buildroot] [PATCH 2/3] linux: bump default to kernel version 3.5.3 Gustavo Zacarias
@ 2012-09-04 12:00 ` Gustavo Zacarias
  2012-09-04 13:52   ` Peter Korsgaard
  2012-09-04 13:49 ` [Buildroot] [PATCH 1/3] kernel-headers: add 3.5.x and bump 3.{0, 2, 4}.x stable versions Peter Korsgaard
  2 siblings, 1 reply; 8+ messages in thread
From: Gustavo Zacarias @ 2012-09-04 12:00 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 boot/uboot/Config.in                               |    6 +++-
 ...oot-tools-2012.07-drop-configh-from-tools.patch |   31 ++++++++++++++++++++
 ...oot-tools-2012.07-hostcflags-override-fix.patch |   29 ++++++++++++++++++
 3 files changed, 65 insertions(+), 1 deletions(-)
 create mode 100644 package/uboot-tools/uboot-tools-2012.07-drop-configh-from-tools.patch
 create mode 100644 package/uboot-tools/uboot-tools-2012.07-hostcflags-override-fix.patch

diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in
index 900fac7..7f3cae0 100644
--- a/boot/uboot/Config.in
+++ b/boot/uboot/Config.in
@@ -12,10 +12,13 @@ config BR2_TARGET_UBOOT_BOARDNAME
 
 choice
 	prompt "U-Boot Version"
-	default BR2_TARGET_UBOOT_2012_04
+	default BR2_TARGET_UBOOT_2012_07
 	help
 	  Select the specific U-Boot version you want to use
 
+config BR2_TARGET_UBOOT_2012_07
+	bool "2012.07"
+
 config BR2_TARGET_UBOOT_2012_04
 	bool "2012.04.01"
 
@@ -50,6 +53,7 @@ endif
 
 config BR2_TARGET_UBOOT_VERSION
 	string
+	default "2012.07"	if BR2_TARGET_UBOOT_2012_07
 	default "2012.04.01"	if BR2_TARGET_UBOOT_2012_04
 	default "2011.12"	if BR2_TARGET_UBOOT_2011_12
 	default "2011.09"	if BR2_TARGET_UBOOT_2011_09
diff --git a/package/uboot-tools/uboot-tools-2012.07-drop-configh-from-tools.patch b/package/uboot-tools/uboot-tools-2012.07-drop-configh-from-tools.patch
new file mode 100644
index 0000000..2b3a0e5
--- /dev/null
+++ b/package/uboot-tools/uboot-tools-2012.07-drop-configh-from-tools.patch
@@ -0,0 +1,31 @@
+From 39857718f4df9b40a7acf38b73140fd86c628ef0 Mon Sep 17 00:00:00 2001
+From: Gustavo Zacarias <gustavo@zacarias.com.ar>
+Date: Mon, 30 Apr 2012 09:07:38 -0300
+Subject: [PATCH] fw_env: allow it to build without a config
+
+We need to build u-boot tools without a board configuration for the
+target packages.
+fw_env just uses config.h to define the default environment of the
+created image, so it really isn't mandatory.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+---
+ tools/env/fw_env.c |    2 --
+ 1 files changed, 0 insertions(+), 2 deletions(-)
+
+diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c
+index e292d2b..2bb061a 100644
+--- a/tools/env/fw_env.c
++++ b/tools/env/fw_env.c
+@@ -45,8 +45,6 @@
+ 
+ #include "fw_env.h"
+ 
+-#include <config.h>
+-
+ #define WHITESPACE(c) ((c == '\t') || (c == ' '))
+ 
+ #define min(x, y) ({				\
+-- 
+1.7.3.4
+
diff --git a/package/uboot-tools/uboot-tools-2012.07-hostcflags-override-fix.patch b/package/uboot-tools/uboot-tools-2012.07-hostcflags-override-fix.patch
new file mode 100644
index 0000000..0202eda
--- /dev/null
+++ b/package/uboot-tools/uboot-tools-2012.07-hostcflags-override-fix.patch
@@ -0,0 +1,29 @@
+[PATCH] Fix tools build with custom HOSTCFLAGS
+
+We always need to append HOSTCPPFLAGS, even if HOSTCFLAGS have been
+overridden on the cmdline.
+
+Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
+---
+ config.mk |    6 ++++--
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+Index: u-boot-2011.03/config.mk
+===================================================================
+--- u-boot-2011.03.orig/config.mk
++++ u-boot-2011.03/config.mk
+@@ -46,10 +46,12 @@
+ 
+ #########################################################################
+ 
+-HOSTCFLAGS	= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \
+-		  $(HOSTCPPFLAGS)
++HOSTCFLAGS	= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
+ HOSTSTRIP	= strip
+ 
++# append CPPFLAGS even if CFLAGS has been overridden on cmdline
++override HOSTCFLAGS += $(HOSTCPPFLAGS)
++
+ #
+ # Mac OS X / Darwin's C preprocessor is Apple specific.  It
+ # generates numerous errors and warnings.  We want to bypass it
-- 
1.7.8.6

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

* [Buildroot] [PATCH 1/3] kernel-headers: add 3.5.x and bump 3.{0, 2, 4}.x stable versions
  2012-09-04 12:00 [Buildroot] [PATCH 1/3] kernel-headers: add 3.5.x and bump 3.{0, 2, 4}.x stable versions Gustavo Zacarias
  2012-09-04 12:00 ` [Buildroot] [PATCH 2/3] linux: bump default to kernel version 3.5.3 Gustavo Zacarias
  2012-09-04 12:00 ` [Buildroot] [PATCH 3/3] u-boot: add version 2012.07 Gustavo Zacarias
@ 2012-09-04 13:49 ` Peter Korsgaard
  2 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2012-09-04 13:49 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Sorry, I did the same change here locally already before noticing your
mail.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/3] linux: bump default to kernel version 3.5.3
  2012-09-04 12:00 ` [Buildroot] [PATCH 2/3] linux: bump default to kernel version 3.5.3 Gustavo Zacarias
@ 2012-09-04 13:50   ` Peter Korsgaard
  0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2012-09-04 13:50 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/3] u-boot: add version 2012.07
  2012-09-04 12:00 ` [Buildroot] [PATCH 3/3] u-boot: add version 2012.07 Gustavo Zacarias
@ 2012-09-04 13:52   ` Peter Korsgaard
  2012-09-04 13:56     ` Gustavo Zacarias
  0 siblings, 1 reply; 8+ messages in thread
From: Peter Korsgaard @ 2012-09-04 13:52 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 Gustavo> ---
 Gustavo>  boot/uboot/Config.in                               |    6 +++-
 Gustavo>  ...oot-tools-2012.07-drop-configh-from-tools.patch |   31 ++++++++++++++++++++
 Gustavo>  ...oot-tools-2012.07-hostcflags-override-fix.patch |   29 ++++++++++++++++++
 Gustavo>  3 files changed, 65 insertions(+), 1 deletions(-)
 Gustavo>  create mode 100644 package/uboot-tools/uboot-tools-2012.07-drop-configh-from-tools.patch
 Gustavo>  create mode 100644 package/uboot-tools/uboot-tools-2012.07-hostcflags-override-fix.patch

You don't seem to be removing the 2012.04 patches?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/3] u-boot: add version 2012.07
  2012-09-04 13:52   ` Peter Korsgaard
@ 2012-09-04 13:56     ` Gustavo Zacarias
  2012-09-04 14:01       ` Peter Korsgaard
  0 siblings, 1 reply; 8+ messages in thread
From: Gustavo Zacarias @ 2012-09-04 13:56 UTC (permalink / raw)
  To: buildroot

On 09/04/12 10:52, Peter Korsgaard wrote:

> You don't seem to be removing the 2012.04 patches?

Duh!
My bad, that's what 0 sleep at night does when the old kid is jealous of
the new kid (and cutting new teeth to spice it up a little more).
Sent v2.
Regards.

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

* [Buildroot] [PATCH 3/3] u-boot: add version 2012.07
  2012-09-04 13:56     ` Gustavo Zacarias
@ 2012-09-04 14:01       ` Peter Korsgaard
  0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2012-09-04 14:01 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> On 09/04/12 10:52, Peter Korsgaard wrote:
 >> You don't seem to be removing the 2012.04 patches?

 Gustavo> Duh!

 Gustavo> My bad, that's what 0 sleep at night does when the old kid is
 Gustavo> jealous of the new kid (and cutting new teeth to spice it up a
 Gustavo> little more).  Sent v2.  Regards.

Heh, congratulations on the 2nd child!

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-09-04 14:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-04 12:00 [Buildroot] [PATCH 1/3] kernel-headers: add 3.5.x and bump 3.{0, 2, 4}.x stable versions Gustavo Zacarias
2012-09-04 12:00 ` [Buildroot] [PATCH 2/3] linux: bump default to kernel version 3.5.3 Gustavo Zacarias
2012-09-04 13:50   ` Peter Korsgaard
2012-09-04 12:00 ` [Buildroot] [PATCH 3/3] u-boot: add version 2012.07 Gustavo Zacarias
2012-09-04 13:52   ` Peter Korsgaard
2012-09-04 13:56     ` Gustavo Zacarias
2012-09-04 14:01       ` Peter Korsgaard
2012-09-04 13:49 ` [Buildroot] [PATCH 1/3] kernel-headers: add 3.5.x and bump 3.{0, 2, 4}.x stable versions Peter Korsgaard

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