mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
If glibc is newer on the host than in uninative, the failure mode is pretty nasty for clusters where the sstate is shared, including the Yocto Project autobuilder. This check aborts the use of uninative in such scenarios where a newer glibc version appears and avoids corruption of sstate caches. We use ldd to check the glibc version since that is included in libc-bin (or equivalent) which locales use so it should always be present. (From OE-Core rev: 8147911a951c7b0508f9c2aef93480d65b4362c0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
640 B
PHP
14 lines
640 B
PHP
#
|
|
# This include points at uninative tarballs generated and maintained
|
|
# by the Yocto Project. These file can be included by distros if they
|
|
# want to use/maintain a unified sstate feed for native/cross artefacts
|
|
# rather than the feeds having native/cross artefacts which are specific
|
|
# to the distro running on the build machine.
|
|
#
|
|
|
|
UNINATIVE_MAXGLIBCVERSION = "2.27"
|
|
|
|
UNINATIVE_URL ?= "http://downloads.yoctoproject.org/releases/uninative/1.8/"
|
|
UNINATIVE_CHECKSUM[i686] ?= "427ce522ec97f65c75fd89587d90ef789e8cbca4a617abc4b5822abb01c2d0ae"
|
|
UNINATIVE_CHECKSUM[x86_64] ?= "de4947e98e09e1432d069311cc2093974ecb9138a714fd5466f73524de66a693"
|