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/files/0002-tests-Makefile-fix-arg-passing-to-CC-in-implicit-rul.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/files/0002-tests-Makefile-fix-arg-passing-to-CC-in-implicit-rul.patch')
| -rw-r--r-- | recipes-kernel/cryptodev/files/0002-tests-Makefile-fix-arg-passing-to-CC-in-implicit-rul.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/recipes-kernel/cryptodev/files/0002-tests-Makefile-fix-arg-passing-to-CC-in-implicit-rul.patch b/recipes-kernel/cryptodev/files/0002-tests-Makefile-fix-arg-passing-to-CC-in-implicit-rul.patch deleted file mode 100644 index 68c48e0c8..000000000 --- a/recipes-kernel/cryptodev/files/0002-tests-Makefile-fix-arg-passing-to-CC-in-implicit-rul.patch +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | From da730106c2558c8e0c8e1b1b1812d32ef9574ab7 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Phil Sutter <phil@nwl.cc> | ||
| 3 | Date: Sat, 11 Apr 2015 12:45:05 +0200 | ||
| 4 | Subject: [PATCH 2/4] tests/Makefile: fix arg passing to CC in implicit rule | ||
| 5 | |||
| 6 | GCC docs suggest passing -lfoo after object files referring to functions | ||
| 7 | in libfoo. Therefore use LDLIBS to specify libraries, which puts them at | ||
| 8 | the right place when make calls CC implicitly. | ||
| 9 | |||
| 10 | Signed-off-by: Phil Sutter <phil@nwl.cc> | ||
| 11 | --- | ||
| 12 | tests/Makefile | 2 +- | ||
| 13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 14 | |||
| 15 | diff --git a/tests/Makefile b/tests/Makefile | ||
| 16 | index c9f04e8..20c52ba 100644 | ||
| 17 | --- a/tests/Makefile | ||
| 18 | +++ b/tests/Makefile | ||
| 19 | @@ -31,5 +31,5 @@ check: $(hostprogs) | ||
| 20 | clean: | ||
| 21 | rm -f *.o *~ $(hostprogs) | ||
| 22 | |||
| 23 | -${comp_progs}: LDFLAGS += -lssl -lcrypto | ||
| 24 | +${comp_progs}: LDLIBS += -lssl -lcrypto | ||
| 25 | ${comp_progs}: %: %.o openssl_wrapper.o | ||
| 26 | -- | ||
| 27 | 2.3.5 | ||
| 28 | |||
