All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] yocto-uninative: Upgrade to verson 2.3 which includes glibc 2.28
@ 2018-10-25 15:10 Richard Purdie
  2018-11-06 17:52 ` akuster808
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Purdie @ 2018-10-25 15:10 UTC (permalink / raw)
  To: openembedded-core

This allows us to handle distros which contain glibc 2.28 such as
Ubuntu 18.10.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/conf/distro/include/yocto-uninative.inc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/conf/distro/include/yocto-uninative.inc b/meta/conf/distro/include/yocto-uninative.inc
index 180d4e54baa..c9d502ba4f9 100644
--- a/meta/conf/distro/include/yocto-uninative.inc
+++ b/meta/conf/distro/include/yocto-uninative.inc
@@ -6,10 +6,10 @@
 # to the distro running on the build machine.
 #
 
-UNINATIVE_MAXGLIBCVERSION = "2.27"
+UNINATIVE_MAXGLIBCVERSION = "2.28"
 
-UNINATIVE_URL ?= "http://downloads.yoctoproject.org/releases/uninative/2.2/"
-UNINATIVE_CHECKSUM[aarch64] ?= "5c9636d2683dca8b783763b5e52f80f12ac857c0f445cdaa58a8c2370583da77"
-UNINATIVE_CHECKSUM[i686] ?= "036b60092fe4acfa1a321d110673030db20344a2d56f33a4d047f0279498bdad"
-UNINATIVE_CHECKSUM[x86_64] ?= "e3b77208169bf1ac4e89496f3cdbf27695f5b18a2694a908a793390f28b67f83"
+UNINATIVE_URL ?= "http://downloads.yoctoproject.org/releases/uninative/2.3/"
+UNINATIVE_CHECKSUM[aarch64] ?= "b7fbbaad1ec86d76eca84d83098f50525b8a4124cc8685eaed"
+UNINATIVE_CHECKSUM[i686] ?= "44253cddbf629082568cea4fff59419106871a0cf81b4845b5d34e7014887b20"
+UNINATIVE_CHECKSUM[x86_64] ?= "c6954563dad3c95608117c6fc328099036c832bbd924ebf5fdccb622fc0a8684"
 
-- 
2.17.1



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

* Re: [PATCH] yocto-uninative: Upgrade to verson 2.3 which includes glibc 2.28
  2018-10-25 15:10 [PATCH] yocto-uninative: Upgrade to verson 2.3 which includes glibc 2.28 Richard Purdie
@ 2018-11-06 17:52 ` akuster808
  2018-11-06 20:17   ` richard.purdie
  0 siblings, 1 reply; 3+ messages in thread
From: akuster808 @ 2018-11-06 17:52 UTC (permalink / raw)
  To: Richard Purdie, openembedded-core

Richard,


On 10/25/18 8:10 AM, Richard Purdie wrote:
> This allows us to handle distros which contain glibc 2.28 such as
> Ubuntu 18.10.


I have this backported to sumo, any reason not try to get this in the
next Rocko release?

- armin

>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
>  meta/conf/distro/include/yocto-uninative.inc | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/meta/conf/distro/include/yocto-uninative.inc b/meta/conf/distro/include/yocto-uninative.inc
> index 180d4e54baa..c9d502ba4f9 100644
> --- a/meta/conf/distro/include/yocto-uninative.inc
> +++ b/meta/conf/distro/include/yocto-uninative.inc
> @@ -6,10 +6,10 @@
>  # to the distro running on the build machine.
>  #
>  
> -UNINATIVE_MAXGLIBCVERSION = "2.27"
> +UNINATIVE_MAXGLIBCVERSION = "2.28"
>  
> -UNINATIVE_URL ?= "http://downloads.yoctoproject.org/releases/uninative/2.2/"
> -UNINATIVE_CHECKSUM[aarch64] ?= "5c9636d2683dca8b783763b5e52f80f12ac857c0f445cdaa58a8c2370583da77"
> -UNINATIVE_CHECKSUM[i686] ?= "036b60092fe4acfa1a321d110673030db20344a2d56f33a4d047f0279498bdad"
> -UNINATIVE_CHECKSUM[x86_64] ?= "e3b77208169bf1ac4e89496f3cdbf27695f5b18a2694a908a793390f28b67f83"
> +UNINATIVE_URL ?= "http://downloads.yoctoproject.org/releases/uninative/2.3/"
> +UNINATIVE_CHECKSUM[aarch64] ?= "b7fbbaad1ec86d76eca84d83098f50525b8a4124cc8685eaed"
> +UNINATIVE_CHECKSUM[i686] ?= "44253cddbf629082568cea4fff59419106871a0cf81b4845b5d34e7014887b20"
> +UNINATIVE_CHECKSUM[x86_64] ?= "c6954563dad3c95608117c6fc328099036c832bbd924ebf5fdccb622fc0a8684"
>  


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

* Re: [PATCH] yocto-uninative: Upgrade to verson 2.3 which includes glibc 2.28
  2018-11-06 17:52 ` akuster808
@ 2018-11-06 20:17   ` richard.purdie
  0 siblings, 0 replies; 3+ messages in thread
From: richard.purdie @ 2018-11-06 20:17 UTC (permalink / raw)
  To: akuster808, openembedded-core

On Tue, 2018-11-06 at 09:52 -0800, akuster808 wrote:
> Richard,
> 
> 
> On 10/25/18 8:10 AM, Richard Purdie wrote:
> > This allows us to handle distros which contain glibc 2.28 such as
> > Ubuntu 18.10.
> 
> 
> I have this backported to sumo, any reason not try to get this in the
> next Rocko release?

No, it would be a good thing to test and include.

Cheers,

Richard



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

end of thread, other threads:[~2018-11-06 20:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-25 15:10 [PATCH] yocto-uninative: Upgrade to verson 2.3 which includes glibc 2.28 Richard Purdie
2018-11-06 17:52 ` akuster808
2018-11-06 20:17   ` richard.purdie

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.