mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
libkcapi: update to 1.3.1
Dropped upstreamed patch. License-Update: copyright years updated. Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
195c723b87
commit
e95b6af4c8
@ -1,36 +0,0 @@
|
||||
From 771dd6aa45dd0bbbb7d7c7a7b116e1b5666fbd7a Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sun, 15 Nov 2020 18:05:48 -0800
|
||||
Subject: [PATCH] Disable use of __NR_io_getevents when not defined
|
||||
|
||||
Architectures like riscv32 do not define this syscall, therefore return
|
||||
ENOSYS on such architectures
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/smuellerDD/libkcapi/pull/100]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
lib/internal.h | 12 ++++++++++++
|
||||
1 file changed, 12 insertions(+)
|
||||
|
||||
--- a/lib/internal.h
|
||||
+++ b/lib/internal.h
|
||||
@@ -325,10 +325,17 @@ static inline int io_submit(aio_context_
|
||||
return syscall(__NR_io_submit, ctx, n, iocb);
|
||||
}
|
||||
|
||||
-static inline int io_getevents(aio_context_t ctx, long min, long max,
|
||||
- struct io_event *events, struct timespec *timeout)
|
||||
+static inline int io_getevents(__attribute__((unused)) aio_context_t ctx,
|
||||
+ __attribute__((unused)) long min,
|
||||
+ __attribute__((unused)) long max,
|
||||
+ __attribute__((unused)) struct io_event *events,
|
||||
+ __attribute__((unused)) struct timespec *timeout)
|
||||
{
|
||||
+#ifdef __NR_io_getevents
|
||||
return syscall(__NR_io_getevents, ctx, min, max, events, timeout);
|
||||
+#else
|
||||
+ return -ENOSYS;
|
||||
+#endif
|
||||
}
|
||||
|
||||
/************************************************************
|
||||
@ -1,13 +1,11 @@
|
||||
SUMMARY = "Linux Kernel Crypto API User Space Interface Library"
|
||||
HOMEPAGE = "http://www.chronox.de/libkcapi.html"
|
||||
LICENSE = "BSD-3-Clause | GPL-2.0"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=c78be93ed8d1637f2a3f4a83ff9d5f54"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=80c467906eb826339c7f09e61808ed23"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
SRCREV = "d41284525ec8960e9a828979cfe269012b7df8db"
|
||||
SRC_URI = "git://github.com/smuellerDD/libkcapi.git;branch=master;protocol=https \
|
||||
file://0001-Disable-use-of-__NR_io_getevents-when-not-defined.patch \
|
||||
"
|
||||
SRCREV = "2936ecd060c299157ac880650ba2c9fd94d27bb1"
|
||||
SRC_URI = "git://github.com/smuellerDD/libkcapi.git;branch=master;protocol=https"
|
||||
|
||||
inherit autotools
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user