summaryrefslogtreecommitdiffstats
path: root/meta-agl-core/recipes-support/rng-tools/rng-tools/0001-rngd_jitter-fix-O_NONBLOCK-setting-for-entropy-pipe.patch
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2021-03-08 12:50:34 -0500
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2021-03-15 21:48:35 +0000
commit743d2973ad2f70af0301ac4667e0ebb4ef2b1bf1 (patch)
tree78cfe45a8eaa5ccee73fcf8a55384bcc6d0e4527 /meta-agl-core/recipes-support/rng-tools/rng-tools/0001-rngd_jitter-fix-O_NONBLOCK-setting-for-entropy-pipe.patch
parente9358ecfbef84f0c7eb6e38440f7ac220eb5db25 (diff)
meta-agl-core: remove rng-tools bbappend
The rng-tools patches are now being applied in the upstream recipe in dunfell 3.1.6, so the local bbappend and patches can now be dropped. Bug-AGL: SPEC-3840 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: Id431d9e5259fd78d6f36934ed4839ef4aa35ba2b Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl/+/26146 Tested-by: Jenkins Job builder account ci-image-build: Jenkins Job builder account ci-image-boot-test: Jenkins Job builder account Reviewed-by: Julien Massot <julien.massot@iot.bzh> Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-agl-core/recipes-support/rng-tools/rng-tools/0001-rngd_jitter-fix-O_NONBLOCK-setting-for-entropy-pipe.patch')
-rw-r--r--meta-agl-core/recipes-support/rng-tools/rng-tools/0001-rngd_jitter-fix-O_NONBLOCK-setting-for-entropy-pipe.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/meta-agl-core/recipes-support/rng-tools/rng-tools/0001-rngd_jitter-fix-O_NONBLOCK-setting-for-entropy-pipe.patch b/meta-agl-core/recipes-support/rng-tools/rng-tools/0001-rngd_jitter-fix-O_NONBLOCK-setting-for-entropy-pipe.patch
deleted file mode 100644
index 3b44095cf..000000000
--- a/meta-agl-core/recipes-support/rng-tools/rng-tools/0001-rngd_jitter-fix-O_NONBLOCK-setting-for-entropy-pipe.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 6ce86cb5cf06541cd5aad70fe8494b07b22c247e Mon Sep 17 00:00:00 2001
-From: Matthias Schiffer <matthias.schiffer@tq-group.com>
-Date: Wed, 27 Jan 2021 16:10:32 +0100
-Subject: [PATCH] rngd_jitter: fix O_NONBLOCK setting for entropy pipe
-
-A pointer was passed to fcntl instead of the flags variable, setting
-random flags.
-
-Signed-off-by: Matthias Schiffer <matthias.schiffer@tq-group.com>
----
- rngd_jitter.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/rngd_jitter.c b/rngd_jitter.c
-index 32bac53..25b3543 100644
---- a/rngd_jitter.c
-+++ b/rngd_jitter.c
-@@ -465,7 +465,7 @@ int init_jitter_entropy_source(struct rng *ent_src)
-
- flags = fcntl(pipefds[0], F_GETFL, 0);
- flags |= O_NONBLOCK;
-- fcntl(pipefds[0], F_SETFL, &flags);
-+ fcntl(pipefds[0], F_SETFL, flags);
-
- if (ent_src->rng_options[JITTER_OPT_USE_AES].int_val) {
- #ifdef HAVE_LIBGCRYPT