mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
Upgrade cryptodev to new release 1.13. This resoves the Kernel build issues for 6.3.y, where Crypto API has been updated, see [1]. Refresh all layer patches with `devtool` to resolve hunks. Link: [1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=255e48eb17684157336bd6dd98d22c1b2d9e3f43 (From OE-Core rev: dc85b747af14f5262590e72e55d2c49670cf09a7) Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
67 lines
1.6 KiB
Diff
67 lines
1.6 KiB
Diff
From 3ba8ba9410464d0986bc6cc5ddb1819745af1eb2 Mon Sep 17 00:00:00 2001
|
|
From: Yu Zongchun <b40527@freescale.com>
|
|
Date: Sun, 28 Apr 2013 14:39:22 +0800
|
|
Subject: [PATCH] Add the compile and install rules for cryptodev tests folder
|
|
|
|
This is required to install the cryptodev tests folder to rootfs
|
|
|
|
Signed-off-by: Yu Zongchun <b40527@freescale.com>
|
|
|
|
Upstream-Status: Pending
|
|
|
|
---
|
|
Makefile | 6 ++++++
|
|
tests/Makefile | 8 ++++++++
|
|
2 files changed, 14 insertions(+)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index d83aee6..3a750a1 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -41,6 +41,9 @@ modules_install:
|
|
install_tests: tests
|
|
$(MAKE) -C tests install DESTDIR=$(PREFIX)
|
|
|
|
+install_tests:
|
|
+ make -C tests install DESTDIR=$(PREFIX)
|
|
+
|
|
clean:
|
|
$(MAKE) $(KERNEL_MAKE_OPTS) clean
|
|
CFLAGS=$(CRYPTODEV_CFLAGS) KERNEL_DIR=$(KERNEL_DIR) $(MAKE) -C tests clean
|
|
@@ -54,6 +57,9 @@ tests:
|
|
|
|
.PHONY: install modules_install tests install_tests
|
|
|
|
+testprogs:
|
|
+ KERNEL_DIR=$(KERNEL_DIR) make -C tests testprogs
|
|
+
|
|
CPOPTS =
|
|
ifneq ($(SHOW_TYPES),)
|
|
CPOPTS += --show-types
|
|
diff --git a/tests/Makefile b/tests/Makefile
|
|
index 2502f32..2fb7a9a 100644
|
|
--- a/tests/Makefile
|
|
+++ b/tests/Makefile
|
|
@@ -23,6 +23,12 @@ bindir = $(execprefix)/bin
|
|
|
|
all: $(hostprogs)
|
|
|
|
+install:
|
|
+ install -d $(DESTDIR)/usr/bin/tests_cryptodev
|
|
+ for bin in $(hostprogs); do \
|
|
+ install -m 755 $${bin} $(DESTDIR)/usr/bin/tests_cryptodev/; \
|
|
+ done
|
|
+
|
|
check: $(hostprogs)
|
|
./cipher
|
|
./hmac
|
|
@@ -38,6 +44,8 @@ install:
|
|
install -m 755 $$prog $(DESTDIR)/$(bindir); \
|
|
done
|
|
|
|
+testprogs: $(hostprogs)
|
|
+
|
|
clean:
|
|
rm -f *.o *~ $(hostprogs)
|
|
|