util-linux-native: Avoid use of getrandom

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>
This commit is contained in:
Richard Purdie
2017-08-14 15:20:39 +01:00
parent faf20cc380
commit 08128ecf6b
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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.
Upstream-Status: Inappropriate
RP
2016/8/15
Index: util-linux-2.30/configure.ac
===================================================================
--- util-linux-2.30.orig/configure.ac
+++ util-linux-2.30/configure.ac
@@ -399,7 +399,6 @@ AC_CHECK_FUNCS([ \
getdtablesize \
getexecname \
getmntinfo \
- getrandom \
getrlimit \
getsgnam \
inotify_init \