summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/gnutls/gnutls
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-12-28 21:04:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-12-31 11:53:26 +0000
commit9df2b1b5a9e3b3b176a5e5289df45c7127245c33 (patch)
tree2a0f90a88f6e7772caa69f6a14ab804e8af4d570 /meta/recipes-support/gnutls/gnutls
parent14a97e0cdb18125e841e5a767f30cc297f94da9a (diff)
downloadpoky-9df2b1b5a9e3b3b176a5e5289df45c7127245c33.tar.gz
gnutls: update 3.6.15 -> 3.7.0
(From OE-Core rev: 6c4b2dcf82378419efca587f033ecac08fbc3b00) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gnutls/gnutls')
-rw-r--r--meta/recipes-support/gnutls/gnutls/arm_eabi.patch15
1 files changed, 13 insertions, 2 deletions
diff --git a/meta/recipes-support/gnutls/gnutls/arm_eabi.patch b/meta/recipes-support/gnutls/gnutls/arm_eabi.patch
index 34c8985c19..6eb1edbdb1 100644
--- a/meta/recipes-support/gnutls/gnutls/arm_eabi.patch
+++ b/meta/recipes-support/gnutls/gnutls/arm_eabi.patch
@@ -1,3 +1,8 @@
1From 8a5c96057cf305bbeac0d6e0e59ee24fbb9497fe Mon Sep 17 00:00:00 2001
2From: Joe Slater <jslater@windriver.com>
3Date: Wed, 25 Jan 2017 13:52:59 -0800
4Subject: [PATCH] gnutls: account for ARM_EABI
5
1Certain syscall's are not availabe for arm-eabi, so we eliminate 6Certain syscall's are not availabe for arm-eabi, so we eliminate
2reference to them. 7reference to them.
3 8
@@ -5,12 +10,18 @@ Upstream-Status: Pending
5 10
6Signed-off-by: Joe Slater <jslater@windriver.com> 11Signed-off-by: Joe Slater <jslater@windriver.com>
7 12
13---
14 tests/seccomp.c | 2 ++
15 1 file changed, 2 insertions(+)
16
17diff --git a/tests/seccomp.c b/tests/seccomp.c
18index ed14d00..3c5b726 100644
8--- a/tests/seccomp.c 19--- a/tests/seccomp.c
9+++ b/tests/seccomp.c 20+++ b/tests/seccomp.c
10@@ -49,7 +49,9 @@ int disable_system_calls(void) 21@@ -53,7 +53,9 @@ int disable_system_calls(void)
11 }
12 22
13 ADD_SYSCALL(nanosleep, 0); 23 ADD_SYSCALL(nanosleep, 0);
24 ADD_SYSCALL(clock_nanosleep, 0);
14+#if ! defined(__ARM_EABI__) 25+#if ! defined(__ARM_EABI__)
15 ADD_SYSCALL(time, 0); 26 ADD_SYSCALL(time, 0);
16+#endif 27+#endif