All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Update to final glibc 2.31
@ 2020-02-01 17:20 Khem Raj
  2020-02-01 17:27 ` [PATCH 1/2] uninative: Recognise ppc64 host ldso Khem Raj
  2020-02-01 17:27 ` [PATCH 2/2] glibc: Update to final 2.31 release Khem Raj
  0 siblings, 2 replies; 3+ messages in thread
From: Khem Raj @ 2020-02-01 17:20 UTC (permalink / raw)
  To: openembedded-core

recognise ppc64le build host for uninative

The following changes since commit 18b6b2ae819cbf0ef3858944b4cd02ab74df6607:

  Adding memoriam to scottrif (2020-01-31 08:03:08 +0000)

are available in the Git repository at:

  git://git.yoctoproject.org/poky-contrib kraj/pu
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kraj/pu

Khem Raj (2):
  uninative: Recognise ppc64 host ldso
  glibc: Update to final 2.31 release

 meta/classes/uninative.bbclass              | 2 +-
 meta/conf/distro/include/tcmode-default.inc | 2 +-
 meta/recipes-core/glibc/glibc-common.inc    | 2 +-
 meta/recipes-core/glibc/glibc-version.inc   | 6 +++---
 4 files changed, 6 insertions(+), 6 deletions(-)

-- 
2.25.0



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

* [PATCH 1/2] uninative: Recognise ppc64 host ldso
  2020-02-01 17:20 [PATCH 0/2] Update to final glibc 2.31 Khem Raj
@ 2020-02-01 17:27 ` Khem Raj
  2020-02-01 17:27 ` [PATCH 2/2] glibc: Update to final 2.31 release Khem Raj
  1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2020-02-01 17:27 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta/classes/uninative.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass
index 9f8645a36a..70799bbf6d 100644
--- a/meta/classes/uninative.bbclass
+++ b/meta/classes/uninative.bbclass
@@ -1,4 +1,4 @@
-UNINATIVE_LOADER ?= "${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux/lib/${@bb.utils.contains('BUILD_ARCH', 'x86_64', 'ld-linux-x86-64.so.2', '', d)}${@bb.utils.contains('BUILD_ARCH', 'i686', 'ld-linux.so.2', '', d)}${@bb.utils.contains('BUILD_ARCH', 'aarch64', 'ld-linux-aarch64.so.1', '', d)}"
+UNINATIVE_LOADER ?= "${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux/lib/${@bb.utils.contains('BUILD_ARCH', 'x86_64', 'ld-linux-x86-64.so.2', '', d)}${@bb.utils.contains('BUILD_ARCH', 'i686', 'ld-linux.so.2', '', d)}${@bb.utils.contains('BUILD_ARCH', 'aarch64', 'ld-linux-aarch64.so.1', '', d)}${@bb.utils.contains('BUILD_ARCH', 'ppc64le', 'ld64.so.2', '', d)}"
 UNINATIVE_STAGING_DIR ?= "${STAGING_DIR}"
 
 UNINATIVE_URL ?= "unset"
-- 
2.25.0



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

* [PATCH 2/2] glibc: Update to final 2.31 release
  2020-02-01 17:20 [PATCH 0/2] Update to final glibc 2.31 Khem Raj
  2020-02-01 17:27 ` [PATCH 1/2] uninative: Recognise ppc64 host ldso Khem Raj
@ 2020-02-01 17:27 ` Khem Raj
  1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2020-02-01 17:27 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta/conf/distro/include/tcmode-default.inc | 2 +-
 meta/recipes-core/glibc/glibc-common.inc    | 2 +-
 meta/recipes-core/glibc/glibc-version.inc   | 6 +++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/conf/distro/include/tcmode-default.inc b/meta/conf/distro/include/tcmode-default.inc
index aba2baaaba..936db5ae16 100644
--- a/meta/conf/distro/include/tcmode-default.inc
+++ b/meta/conf/distro/include/tcmode-default.inc
@@ -20,7 +20,7 @@ GCCVERSION ?= "9.%"
 SDKGCCVERSION ?= "${GCCVERSION}"
 BINUVERSION ?= "2.33%"
 GDBVERSION ?= "8.3%"
-GLIBCVERSION ?= "2.30%"
+GLIBCVERSION ?= "2.31"
 LINUXLIBCVERSION ?= "5.4%"
 QEMUVERSION ?= "4.1%"
 GOVERSION ?= "1.13%"
diff --git a/meta/recipes-core/glibc/glibc-common.inc b/meta/recipes-core/glibc/glibc-common.inc
index 27534d999f..8d412cc857 100644
--- a/meta/recipes-core/glibc/glibc-common.inc
+++ b/meta/recipes-core/glibc/glibc-common.inc
@@ -22,4 +22,4 @@ ARM_INSTRUCTION_SET_armv6 = "arm"
 #
 COMPATIBLE_HOST_libc-musl_class-target = "null"
 
-PV = "2.30.9000"
+PV = "2.31"
diff --git a/meta/recipes-core/glibc/glibc-version.inc b/meta/recipes-core/glibc/glibc-version.inc
index c2cfb7e2f1..f489650f70 100644
--- a/meta/recipes-core/glibc/glibc-version.inc
+++ b/meta/recipes-core/glibc/glibc-version.inc
@@ -1,6 +1,6 @@
-SRCBRANCH ?= "master"
-PV = "2.30.9000"
-SRCREV_glibc ?= "352bb99754ae7c83ff1b974f9c52244e974c9410"
+SRCBRANCH ?= "release/2.31/master"
+PV = "2.31"
+SRCREV_glibc ?= "9ea3686266dca3f004ba874745a4087a89682617"
 SRCREV_localedef ?= "cd9f958c4c94a638fa7b2b4e21627364f1a1a655"
 
 GLIBC_GIT_URI ?= "git://sourceware.org/git/glibc.git"
-- 
2.25.0



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

end of thread, other threads:[~2020-02-01 17:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-01 17:20 [PATCH 0/2] Update to final glibc 2.31 Khem Raj
2020-02-01 17:27 ` [PATCH 1/2] uninative: Recognise ppc64 host ldso Khem Raj
2020-02-01 17:27 ` [PATCH 2/2] glibc: Update to final 2.31 release Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.