summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/cryptodev/cryptodev-qoriq_1.7.inc
diff options
context:
space:
mode:
authorCristian Stoica <cristian.stoica@nxp.com>2016-01-25 11:19:43 +0200
committerOtavio Salvador <otavio@ossystems.com.br>2016-08-12 11:41:02 -0300
commitb8e3085e4e9608b301121c7065c84a3e51b94c74 (patch)
tree27dd6761bb8a8b9a3ce311bab1155a15badaec5e /recipes-kernel/cryptodev/cryptodev-qoriq_1.7.inc
parent578ab5d071729c9677d928467a2b48bcb0017139 (diff)
downloadmeta-freescale-b8e3085e4e9608b301121c7065c84a3e51b94c74.tar.gz
cryptodev-qoriq: upgrade to 1.8 plus fsl patches
upstream commit: 87b56e04b24c6d4be145483477eff7d3153290e9 Also: - move all fsl patches on top of cryptodev-1.8 - add CIOCHASH ioctl - fix incorrect tests initializations - modify yocto patches to match updated Makefiles Signed-off-by: Cristian Stoica <cristian.stoica@nxp.com>
Diffstat (limited to 'recipes-kernel/cryptodev/cryptodev-qoriq_1.7.inc')
-rw-r--r--recipes-kernel/cryptodev/cryptodev-qoriq_1.7.inc62
1 files changed, 0 insertions, 62 deletions
diff --git a/recipes-kernel/cryptodev/cryptodev-qoriq_1.7.inc b/recipes-kernel/cryptodev/cryptodev-qoriq_1.7.inc
deleted file mode 100644
index e4700db4..00000000
--- a/recipes-kernel/cryptodev/cryptodev-qoriq_1.7.inc
+++ /dev/null
@@ -1,62 +0,0 @@
1HOMEPAGE = "http://cryptodev-linux.org/"
2
3RCONFLICTS_${PN} = "ocf-linux"
4RREPLACES_${PN} = "ocf-linux"
5
6LICENSE = "GPLv2"
7LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
8
9python() {
10 pkgs = d.getVar('PACKAGES', True).split()
11 for p in pkgs:
12 if 'cryptodev-qoriq' in p:
13 d.appendVar("RPROVIDES_%s" % p, p.replace('cryptodev-qoriq', 'cryptodev'))
14 d.appendVar("RCONFLICTS_%s" % p, p.replace('cryptodev-qoriq', 'cryptodev'))
15 d.appendVar("RREPLACES_%s" % p, p.replace('cryptodev-qoriq', 'cryptodev'))
16}
17
18SRC_URI = "http://download.gna.org/cryptodev-linux/cryptodev-linux-${PV}.tar.gz"
19SRC_URI[md5sum] = "0b63b3481cf2c90386b35f057481d36b"
20SRC_URI[sha256sum] = "41880533b53de4d7b3f054e230f576988dafb8eed7bef5ebcf6422bb2e3a3b25"
21
22# Upstream hotfixes and yocto specific patches
23SRC_URI_append = " \
24file://0001-fix-compilation-against-linux-3.19.patch \
25file://0002-tests-Makefile-fix-arg-passing-to-CC-in-implicit-rul.patch \
26file://0003-Disable-installing-header-file-provided-by-another-p.patch \
27file://0004-Add-the-compile-and-install-rules-for-cryptodev-test.patch \
28"
29# SDK patches
30SRC_URI_append = " file://0001-add-support-for-composite-TLS10-SHA1-AES-algorithm-o.patch \
31file://0002-add-support-for-COMPAT_CIOCAUTHCRYPT-ioctl.patch \
32file://0003-PKC-support-added-in-cryptodev-module.patch \
33file://0004-Compat-versions-of-PKC-IOCTLs.patch \
34file://0005-Asynchronous-interface-changes-in-cryptodev.patch \
35file://0006-ECC_KEYGEN-and-DLC_KEYGEN-supported-in-cryptodev-mod.patch \
36file://0007-RCU-stall-fixed-in-PKC-asynchronous-interface.patch \
37file://0008-Add-RSA-Key-generation-offloading.patch \
38file://0009-Fixed-compilation-error-of-openssl-with-fsl-cryptode.patch \
39file://0010-add-support-for-composite-TLS10-SHA1-3DES-algorithm-.patch \
40file://0011-add-support-for-TLSv1.1-record-offload.patch \
41file://0012-add-support-for-TLSv1.2-record-offload.patch \
42file://0013-clean-up-code-layout.patch \
43file://0014-remove-redundant-data-copy-for-pkc-operations.patch \
44file://0015-fix-pkc-request-deallocation.patch \
45file://0016-add-basic-detection-of-asym-features.patch \
46file://0017-remove-dead-code.patch \
47file://0018-fix-compat-warnings.patch \
48file://0019-fix-size_t-print-format.patch \
49file://0020-fix-uninitialized-variable-compiler-warning.patch \
50file://0021-check-return-codes-for-copy-to-from-user-functions.patch \
51file://0022-fix-double-free-pkc-req-on-error.patch \
52file://0023-remove-MAY_BACKLOG-flag-from-requests.patch \
53file://0024-fix-COMPAT_CIOCKEY-ioctl-command-number.patch \
54"
55
56# NOTE: remove this patch and all traces of DISTRO_FEATURE c29x_pkc
57# if pkc-host does not need customized cryptodev patches anymore
58SRC_URI_append = "${@bb.utils.contains('DISTRO_FEATURES', 'c29x_pkc', ' file://0001-don-t-advertise-RSA-keygen.patch', '', d)}"
59
60S = "${WORKDIR}/cryptodev-linux-${PV}"
61
62CLEANBROKEN = "1"