mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
getrandom() is only available in glibc 2.25+ and uninative may relocate binaries onto systems that don't have this function. For now, force the code to the older codepath until we can come up with a better solution for this kind of issue. (From OE-Core rev: 95e31e4b15573eb1cbeb4ff1d0903c5141b84d54) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.1 KiB
BlitzBasic
32 lines
1.1 KiB
BlitzBasic
MAJOR_VERSION = "2.30"
|
|
require util-linux.inc
|
|
|
|
# To support older hosts, we need to patch and/or revert
|
|
# some upstream changes. Only do this for native packages.
|
|
OLDHOST = ""
|
|
OLDHOST_class-native = "file://util-linux-native-qsort.patch"
|
|
|
|
SRC_URI += "file://configure-sbindir.patch \
|
|
file://runuser.pamd \
|
|
file://runuser-l.pamd \
|
|
${OLDHOST} \
|
|
file://ptest.patch \
|
|
file://run-ptest \
|
|
file://display_testname_for_subtest.patch \
|
|
file://avoid_parallel_tests.patch \
|
|
"
|
|
SRC_URI_append_class-native = " file://no_getrandom.patch"
|
|
SRC_URI[md5sum] = "eaa3429150268027908a1b8ae6ee9a62"
|
|
SRC_URI[sha256sum] = "c208a4ff6906cb7f57940aa5bc3a6eed146e50a7cc0a092f52ef2ab65057a08d"
|
|
|
|
CACHED_CONFIGUREVARS += "scanf_cv_alloc_modifier=ms"
|
|
|
|
EXTRA_OECONF_class-native = "${SHARED_EXTRA_OECONF} \
|
|
--disable-fallocate \
|
|
--disable-use-tty-group \
|
|
"
|
|
EXTRA_OECONF_class-nativesdk = "${SHARED_EXTRA_OECONF} \
|
|
--disable-fallocate \
|
|
--disable-use-tty-group \
|
|
"
|