lede/package/utils/util-linux/patches/100-use_urandom.patch

15 lines
305 B
Diff
Raw Normal View History

2018-01-15 10:26:41 +00:00
--- a/lib/randutils.c
+++ b/lib/randutils.c
2020-07-02 15:30:56 +00:00
@@ -26,6 +26,11 @@
2018-01-15 10:26:41 +00:00
#define THREAD_LOCAL static
#endif
+/* force /dev/urandom to avoid hanging on early boot */
+#undef HAVE_GETRANDOM
+#undef SYS_getrandom
+#undef __NR_getrandom
+
#ifdef HAVE_GETRANDOM
# include <sys/random.h>
#elif defined (__linux__)