* [PATCH 0/3] switch to newer eglibc & gcc versions
@ 2011-05-22 17:10 nitin.a.kamble
2011-05-22 17:11 ` [PATCH 1/3] tcmode-default: switch to eglibc 2.13 from 2.12 nitin.a.kamble
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: nitin.a.kamble @ 2011-05-22 17:10 UTC (permalink / raw)
To: openembedded-core, poky
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Switch to eglibc 2.13 from 2.12
Switch to gcc 4.6.0 from 4.5.1 for mips & powerpc
Tested meta-toolchain, core-image-lsb-sdk & core-image-sato-sdk images with
these commits. And didn't notice any breakage. sdk compiler is working inside
the images. and basic programs are working well inside the images.
Also update patch status for some gplv2 recipes
The following changes since commit fc55b224caa3eeac4abda099ec9ed505db59fb28:
base.bbclass: use oe.data for OE_IMPORTS (2011-05-20 17:34:23 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib.git nitin/misc
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/misc
Nitin A Kamble (3):
tcmode-default: switch to eglibc 2.13 from 2.12
tcmode-default: switch to gcc 4.6.0 for ppc & mips also
gplv2 recipes update upstream status of patches
meta/conf/distro/include/tcmode-default.inc | 6 +-----
meta/recipes-extended/at/at-3.1.12/configure.patch | 2 ++
.../cpio/cpio-2.8/m4extensions.patch | 2 ++
meta/recipes-extended/cpio/cpio-2.8/statdef.patch | 2 ++
.../grep/grep-2.5.1a/uclibc-fix.patch | 2 ++
.../recipes-extended/tar/tar-1.17/gcc43build.patch | 2 ++
.../tar/tar-1.17/m4extensions.patch | 2 ++
7 files changed, 13 insertions(+), 5 deletions(-)
--
1.7.3.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/3] tcmode-default: switch to eglibc 2.13 from 2.12
2011-05-22 17:10 [PATCH 0/3] switch to newer eglibc & gcc versions nitin.a.kamble
@ 2011-05-22 17:11 ` nitin.a.kamble
2011-05-22 17:11 ` [PATCH 2/3] tcmode-default: switch to gcc 4.6.0 for ppc & mips also nitin.a.kamble
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: nitin.a.kamble @ 2011-05-22 17:11 UTC (permalink / raw)
To: openembedded-core, poky
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/conf/distro/include/tcmode-default.inc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta/conf/distro/include/tcmode-default.inc b/meta/conf/distro/include/tcmode-default.inc
index ae6f272..c2c9efe 100644
--- a/meta/conf/distro/include/tcmode-default.inc
+++ b/meta/conf/distro/include/tcmode-default.inc
@@ -24,7 +24,7 @@ GCCVERSION_ppc ?= "4.5.1"
SDKGCCVERSION_ppc ?= "4.5.1"
BINUVERSION ?= "2.21"
GLIBCVERSION ?= "2.10.1"
-EGLIBCVERSION ?= "2.12"
+EGLIBCVERSION ?= "2.13"
LINUXLIBCVERSION ?= "2.6.37.2"
# Temporary preferred version overrides for PPC
--
1.7.3.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/3] tcmode-default: switch to gcc 4.6.0 for ppc & mips also
2011-05-22 17:10 [PATCH 0/3] switch to newer eglibc & gcc versions nitin.a.kamble
2011-05-22 17:11 ` [PATCH 1/3] tcmode-default: switch to eglibc 2.13 from 2.12 nitin.a.kamble
@ 2011-05-22 17:11 ` nitin.a.kamble
2011-05-22 17:11 ` [PATCH 3/3] gplv2 recipes update upstream status of patches nitin.a.kamble
2011-05-23 19:01 ` [poky] [PATCH 0/3] switch to newer eglibc & gcc versions Saul Wold
3 siblings, 0 replies; 5+ messages in thread
From: nitin.a.kamble @ 2011-05-22 17:11 UTC (permalink / raw)
To: openembedded-core, poky
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Now the kernel issues related to gcc 4.6.0 for mips & ppc are fixed.
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/conf/distro/include/tcmode-default.inc | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/meta/conf/distro/include/tcmode-default.inc b/meta/conf/distro/include/tcmode-default.inc
index c2c9efe..d279231 100644
--- a/meta/conf/distro/include/tcmode-default.inc
+++ b/meta/conf/distro/include/tcmode-default.inc
@@ -18,10 +18,6 @@ PREFERRED_PROVIDER_virtual/gettext ??= "gettext"
GCCVERSION ?= "4.6.0"
SDKGCCVERSION ?= "4.6.0"
-GCCVERSION_mips ?= "4.5.1"
-SDKGCCVERSION_mips ?= "4.5.1"
-GCCVERSION_ppc ?= "4.5.1"
-SDKGCCVERSION_ppc ?= "4.5.1"
BINUVERSION ?= "2.21"
GLIBCVERSION ?= "2.10.1"
EGLIBCVERSION ?= "2.13"
--
1.7.3.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] gplv2 recipes update upstream status of patches
2011-05-22 17:10 [PATCH 0/3] switch to newer eglibc & gcc versions nitin.a.kamble
2011-05-22 17:11 ` [PATCH 1/3] tcmode-default: switch to eglibc 2.13 from 2.12 nitin.a.kamble
2011-05-22 17:11 ` [PATCH 2/3] tcmode-default: switch to gcc 4.6.0 for ppc & mips also nitin.a.kamble
@ 2011-05-22 17:11 ` nitin.a.kamble
2011-05-23 19:01 ` [poky] [PATCH 0/3] switch to newer eglibc & gcc versions Saul Wold
3 siblings, 0 replies; 5+ messages in thread
From: nitin.a.kamble @ 2011-05-22 17:11 UTC (permalink / raw)
To: openembedded-core, poky
From: Nitin A Kamble <nitin.a.kamble@intel.com>
grep-2.5.1a: update upstream status of patches
tar-1.17: update upstream-status of patches
at-3.1.12: update upstream-status for patches
cpio-2.8: update upstream-status for patches
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/recipes-extended/at/at-3.1.12/configure.patch | 2 ++
.../cpio/cpio-2.8/m4extensions.patch | 2 ++
meta/recipes-extended/cpio/cpio-2.8/statdef.patch | 2 ++
.../grep/grep-2.5.1a/uclibc-fix.patch | 2 ++
.../recipes-extended/tar/tar-1.17/gcc43build.patch | 2 ++
.../tar/tar-1.17/m4extensions.patch | 2 ++
6 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-extended/at/at-3.1.12/configure.patch b/meta/recipes-extended/at/at-3.1.12/configure.patch
index 079a6b4..99b4077 100644
--- a/meta/recipes-extended/at/at-3.1.12/configure.patch
+++ b/meta/recipes-extended/at/at-3.1.12/configure.patch
@@ -1,3 +1,5 @@
+Upstream-Status: Inappropriate [licensing]
+
Fix cross-compilation issues in configure.ac
Derived from an OE patch for at-3.1.8
diff --git a/meta/recipes-extended/cpio/cpio-2.8/m4extensions.patch b/meta/recipes-extended/cpio/cpio-2.8/m4extensions.patch
index 648c725..e16585d 100644
--- a/meta/recipes-extended/cpio/cpio-2.8/m4extensions.patch
+++ b/meta/recipes-extended/cpio/cpio-2.8/m4extensions.patch
@@ -1,3 +1,5 @@
+Upstream-Status: Inappropriate [licensing]
+
# Define AC_USE_SYSTEM_EXTENSIONS only if it was previously undefined.
# This is needed to configure correctly with newer versions of autoconf.
diff --git a/meta/recipes-extended/cpio/cpio-2.8/statdef.patch b/meta/recipes-extended/cpio/cpio-2.8/statdef.patch
index dfa0d91..a00799f 100644
--- a/meta/recipes-extended/cpio/cpio-2.8/statdef.patch
+++ b/meta/recipes-extended/cpio/cpio-2.8/statdef.patch
@@ -1,3 +1,5 @@
+Upstream-Status: Inappropriate [licensing]
+
# Avoid multiple stat definitions
# Patch taken from cpio mailing list posting 2010-03-19
diff --git a/meta/recipes-extended/grep/grep-2.5.1a/uclibc-fix.patch b/meta/recipes-extended/grep/grep-2.5.1a/uclibc-fix.patch
index 8fc7c48..de054fc 100644
--- a/meta/recipes-extended/grep/grep-2.5.1a/uclibc-fix.patch
+++ b/meta/recipes-extended/grep/grep-2.5.1a/uclibc-fix.patch
@@ -1,3 +1,5 @@
+Upstream-Status: Inappropriate [licensing]
+
# Fix to use mempcpy instead of __mempcpy. This is needed for uclibc which
# doesn't define __mempcpy, only mempcpy. Since both uclibc and glibc have
# mempcpy, we'll just use that instead.
diff --git a/meta/recipes-extended/tar/tar-1.17/gcc43build.patch b/meta/recipes-extended/tar/tar-1.17/gcc43build.patch
index cc5f0e1..f8059a0 100644
--- a/meta/recipes-extended/tar/tar-1.17/gcc43build.patch
+++ b/meta/recipes-extended/tar/tar-1.17/gcc43build.patch
@@ -1,3 +1,5 @@
+Upstream-Status: Inappropriate [licensing]
+
# Fix errors when built with gcc 4.3
# Patch taken from Debian bug #452096
diff --git a/meta/recipes-extended/tar/tar-1.17/m4extensions.patch b/meta/recipes-extended/tar/tar-1.17/m4extensions.patch
index 11b981a..30534c2 100644
--- a/meta/recipes-extended/tar/tar-1.17/m4extensions.patch
+++ b/meta/recipes-extended/tar/tar-1.17/m4extensions.patch
@@ -1,3 +1,5 @@
+Upstream-Status: Inappropriate [licensing]
+
# Define AC_USE_SYSTEM_EXTENSIONS only if it was previously undefined.
# This is needed to configure correctly with newer versions of autoconf.
--
1.7.3.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [poky] [PATCH 0/3] switch to newer eglibc & gcc versions
2011-05-22 17:10 [PATCH 0/3] switch to newer eglibc & gcc versions nitin.a.kamble
` (2 preceding siblings ...)
2011-05-22 17:11 ` [PATCH 3/3] gplv2 recipes update upstream status of patches nitin.a.kamble
@ 2011-05-23 19:01 ` Saul Wold
3 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2011-05-23 19:01 UTC (permalink / raw)
To: nitin.a.kamble; +Cc: poky, openembedded-core
On 05/22/2011 10:10 AM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
>
> Switch to eglibc 2.13 from 2.12
> Switch to gcc 4.6.0 from 4.5.1 for mips& powerpc
>
> Tested meta-toolchain, core-image-lsb-sdk& core-image-sato-sdk images with
> these commits. And didn't notice any breakage. sdk compiler is working inside
> the images. and basic programs are working well inside the images.
>
> Also update patch status for some gplv2 recipes
>
> The following changes since commit fc55b224caa3eeac4abda099ec9ed505db59fb28:
>
> base.bbclass: use oe.data for OE_IMPORTS (2011-05-20 17:34:23 +0100)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib.git nitin/misc
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/misc
>
> Nitin A Kamble (3):
> tcmode-default: switch to eglibc 2.13 from 2.12
> tcmode-default: switch to gcc 4.6.0 for ppc& mips also
> gplv2 recipes update upstream status of patches
>
> meta/conf/distro/include/tcmode-default.inc | 6 +-----
> meta/recipes-extended/at/at-3.1.12/configure.patch | 2 ++
> .../cpio/cpio-2.8/m4extensions.patch | 2 ++
> meta/recipes-extended/cpio/cpio-2.8/statdef.patch | 2 ++
> .../grep/grep-2.5.1a/uclibc-fix.patch | 2 ++
> .../recipes-extended/tar/tar-1.17/gcc43build.patch | 2 ++
> .../tar/tar-1.17/m4extensions.patch | 2 ++
> 7 files changed, 13 insertions(+), 5 deletions(-)
>
Merged into oe-core and poky master.
Thanks
Sau!
BTW, in the future please send directly to oe-core, no need to cross post.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-05-23 19:04 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-22 17:10 [PATCH 0/3] switch to newer eglibc & gcc versions nitin.a.kamble
2011-05-22 17:11 ` [PATCH 1/3] tcmode-default: switch to eglibc 2.13 from 2.12 nitin.a.kamble
2011-05-22 17:11 ` [PATCH 2/3] tcmode-default: switch to gcc 4.6.0 for ppc & mips also nitin.a.kamble
2011-05-22 17:11 ` [PATCH 3/3] gplv2 recipes update upstream status of patches nitin.a.kamble
2011-05-23 19:01 ` [poky] [PATCH 0/3] switch to newer eglibc & gcc versions Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox