1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 12:29:55 +00:00

cryptodev: refresh patches

The patch tool will apply patches by default with "fuzz", which is where if the
hunk context isn't present but what is there is close enough, it will force the
patch in.

Whilst this is useful when there's just whitespace changes, when applied to
source it is possible for a patch applied with fuzz to produce broken code which
still compiles (see #10450).  This is obviously bad.

We'd like to eventually have do_patch() rejecting any fuzz on these grounds. For
that to be realistic the existing patches with fuzz need to be rebased and
reviewed.

(From OE-Core rev: cecd562742c94f223c92bf5426148967fc9a8054)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton
2018-03-09 20:56:10 +02:00
committed by Richard Purdie
parent 795934f307
commit fffb52a49b
@@ -14,37 +14,37 @@ Upstream-Status: Pending
tests/Makefile | 8 ++++++++ tests/Makefile | 8 ++++++++
2 files changed, 14 insertions(+), 0 deletions(-) 2 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile Index: git/Makefile
index 31c4b3f..2ecf2a9 100644 ===================================================================
--- a/Makefile --- git.orig/Makefile
+++ b/Makefile +++ git/Makefile
@@ -34,6 +34,9 @@ modules_install: @@ -35,6 +35,9 @@ modules_install:
@echo "Installing cryptodev.h in $(PREFIX)/usr/include/crypto ..." $(MAKE) $(KERNEL_MAKE_OPTS) modules_install
@install -D crypto/cryptodev.h $(PREFIX)/usr/include/crypto/cryptodev.h install -m 644 -D crypto/cryptodev.h $(DESTDIR)/$(includedir)/crypto/cryptodev.h
+install_tests: +install_tests:
+ make -C tests install DESTDIR=$(PREFIX) + make -C tests install DESTDIR=$(PREFIX)
+ +
clean: clean:
make -C $(KERNEL_DIR) SUBDIRS=`pwd` clean $(MAKE) $(KERNEL_MAKE_OPTS) clean
rm -f $(hostprogs) *~ rm -f $(hostprogs) *~
@@ -42,6 +45,9 @@ clean: @@ -43,6 +46,9 @@ clean:
check: check:
CFLAGS=$(CRYPTODEV_CFLAGS) KERNEL_DIR=$(KERNEL_DIR) make -C tests check CFLAGS=$(CRYPTODEV_CFLAGS) KERNEL_DIR=$(KERNEL_DIR) $(MAKE) -C tests check
+testprogs: +testprogs:
+ KERNEL_DIR=$(KERNEL_DIR) make -C tests testprogs + KERNEL_DIR=$(KERNEL_DIR) make -C tests testprogs
+ +
CPOPTS = CPOPTS =
ifneq (${SHOW_TYPES},) ifneq ($(SHOW_TYPES),)
CPOPTS += --show-types CPOPTS += --show-types
diff --git a/tests/Makefile b/tests/Makefile Index: git/tests/Makefile
index c9f04e8..cd202af 100644 ===================================================================
--- a/tests/Makefile --- git.orig/tests/Makefile
+++ b/tests/Makefile +++ git/tests/Makefile
@@ -19,6 +19,12 @@ example-async-hmac-objs := async_hmac.o @@ -23,6 +23,12 @@ bindir = $(execprefix)/bin
example-async-speed-objs := async_speed.o
example-hashcrypt-speed-objs := hashcrypt_speed.c all: $(hostprogs)
+install: +install:
+ install -d $(DESTDIR)/usr/bin/tests_cryptodev + install -d $(DESTDIR)/usr/bin/tests_cryptodev
@@ -55,9 +55,9 @@ index c9f04e8..cd202af 100644
check: $(hostprogs) check: $(hostprogs)
./cipher ./cipher
./hmac ./hmac
@@ -28,6 +34,8 @@ check: $(hostprogs) @@ -38,6 +44,8 @@ install:
./cipher-gcm install -m 755 $$prog $(DESTDIR)/$(bindir); \
./cipher-aead done
+testprogs: $(hostprogs) +testprogs: $(hostprogs)
+ +