diff options
author | Cristian Stoica <cristian.stoica@nxp.com> | 2016-01-25 11:19:43 +0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2016-08-12 11:41:02 -0300 |
commit | b8e3085e4e9608b301121c7065c84a3e51b94c74 (patch) | |
tree | 27dd6761bb8a8b9a3ce311bab1155a15badaec5e /recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch | |
parent | 578ab5d071729c9677d928467a2b48bcb0017139 (diff) | |
download | meta-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/sdk_patches/0025-fix-benchmarks-linking.patch')
-rw-r--r-- | recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch b/recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch new file mode 100644 index 00000000..608c6812 --- /dev/null +++ b/recipes-kernel/cryptodev/sdk_patches/0025-fix-benchmarks-linking.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | From 978cfcf9253c409520c0f168f8caa249f50a8843 Mon Sep 17 00:00:00 2001 | ||
2 | From: Fridolin Pokorny <fpokorny@redhat.com> | ||
3 | Date: Fri, 8 Jan 2016 09:38:29 +0100 | ||
4 | Subject: [PATCH 25/38] fix benchmarks linking | ||
5 | |||
6 | --- | ||
7 | lib/Makefile | 2 +- | ||
8 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
9 | |||
10 | diff --git a/lib/Makefile b/lib/Makefile | ||
11 | index af87795..3bedc34 100644 | ||
12 | --- a/lib/Makefile | ||
13 | +++ b/lib/Makefile | ||
14 | @@ -3,7 +3,7 @@ CFLAGS=-g -O2 -Wall | ||
15 | all: benchmark | ||
16 | |||
17 | benchmark: main.c libthreshold.a | ||
18 | - gcc $(CFLAGS) -DDEBUG -o $@ $^ -lssl libthreshold.a | ||
19 | + gcc $(CFLAGS) -DDEBUG -o $@ $^ -lssl -lcrypto libthreshold.a | ||
20 | |||
21 | .o: | ||
22 | gcc $(CCFLAGS) -c $< -o $@ | ||
23 | -- | ||
24 | 2.7.0 | ||
25 | |||