summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/cryptodev
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-kernel/cryptodev
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/cryptodev')
-rw-r--r--meta/recipes-kernel/cryptodev/cryptodev-linux_1.14.bb12
-rw-r--r--meta/recipes-kernel/cryptodev/cryptodev-module_1.14.bb13
-rw-r--r--meta/recipes-kernel/cryptodev/cryptodev-tests_1.14.bb17
-rw-r--r--meta/recipes-kernel/cryptodev/cryptodev.inc16
4 files changed, 0 insertions, 58 deletions
diff --git a/meta/recipes-kernel/cryptodev/cryptodev-linux_1.14.bb b/meta/recipes-kernel/cryptodev/cryptodev-linux_1.14.bb
deleted file mode 100644
index 451a8d7ef8..0000000000
--- a/meta/recipes-kernel/cryptodev/cryptodev-linux_1.14.bb
+++ /dev/null
@@ -1,12 +0,0 @@
1require cryptodev.inc
2
3SUMMARY = "A /dev/crypto device driver header file"
4
5do_compile[noexec] = "1"
6
7do_install() {
8 oe_runmake headers_install DESTDIR="${D}"
9}
10
11ALLOW_EMPTY:${PN} = "1"
12BBCLASSEXTEND = "native nativesdk"
diff --git a/meta/recipes-kernel/cryptodev/cryptodev-module_1.14.bb b/meta/recipes-kernel/cryptodev/cryptodev-module_1.14.bb
deleted file mode 100644
index 88d76c9d23..0000000000
--- a/meta/recipes-kernel/cryptodev/cryptodev-module_1.14.bb
+++ /dev/null
@@ -1,13 +0,0 @@
1require cryptodev.inc
2
3SUMMARY = "A /dev/crypto device driver kernel module"
4
5inherit module
6
7# Header file provided by a separate package
8DEPENDS += "cryptodev-linux"
9
10EXTRA_OEMAKE = 'KERNEL_DIR="${STAGING_KERNEL_DIR}" PREFIX="${D}"'
11
12RCONFLICTS:${PN} = "ocf-linux"
13RREPLACES:${PN} = "ocf-linux"
diff --git a/meta/recipes-kernel/cryptodev/cryptodev-tests_1.14.bb b/meta/recipes-kernel/cryptodev/cryptodev-tests_1.14.bb
deleted file mode 100644
index 2cbee8a348..0000000000
--- a/meta/recipes-kernel/cryptodev/cryptodev-tests_1.14.bb
+++ /dev/null
@@ -1,17 +0,0 @@
1require cryptodev.inc
2
3SUMMARY = "A test suite for /dev/crypto device driver"
4
5DEPENDS += "openssl"
6
7EXTRA_OEMAKE = 'KERNEL_DIR="${STAGING_EXECPREFIXDIR}" PREFIX="${D}"'
8
9do_compile() {
10 oe_runmake tests
11}
12
13do_install() {
14 oe_runmake install_tests
15}
16
17FILES:${PN} = "${bindir}/*"
diff --git a/meta/recipes-kernel/cryptodev/cryptodev.inc b/meta/recipes-kernel/cryptodev/cryptodev.inc
deleted file mode 100644
index 16a8eb610a..0000000000
--- a/meta/recipes-kernel/cryptodev/cryptodev.inc
+++ /dev/null
@@ -1,16 +0,0 @@
1HOMEPAGE = "http://cryptodev-linux.org/"
2DESCRIPTION = "Cryptodev-linux is a device that allows access to Linux kernel \
3cryptographic drivers; thus allowing of userspace applications to take advantage \
4of hardware accelerators. Cryptodev-linux is implemented as a standalone \
5module that requires no dependencies other than a stock linux kernel. Its \
6API is compatible with OpenBSD's cryptodev userspace API (/dev/crypto)."
7
8LICENSE = "GPL-2.0-only"
9LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
10
11SRC_URI = "git://github.com/cryptodev-linux/cryptodev-linux;branch=master;protocol=https \
12 "
13SRCREV = "135cbff90af2ba97d88f1472be595ce78721972c"
14PV = "1.14"
15
16CLEANBROKEN = "1"