summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-03-08 20:17:35 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-03-09 09:17:02 -0800
commit02750930545bd13f6d6fa7e8169f49badf03a083 (patch)
treebca3ca883bc830ea33319aacd187fa051c087937 /meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch
parent27cb6b554342929c78b40189afdc4a62340a2cf2 (diff)
downloadpoky-02750930545bd13f6d6fa7e8169f49badf03a083.tar.gz
kmod: 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: c94152fee766297b355fec7f6d3d4d8ba7ae5f86) 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>
Diffstat (limited to 'meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch')
-rw-r--r--meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch13
1 files changed, 5 insertions, 8 deletions
diff --git a/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch b/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch
index feafcb9b7c..5f45fce932 100644
--- a/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch
+++ b/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch
@@ -11,10 +11,10 @@ Upstream-Status: Inappropriate (disable feature incompatible with ptest)
11 configure.ac | 2 +- 11 configure.ac | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-) 12 1 file changed, 1 insertion(+), 1 deletion(-)
13 13
14diff --git a/configure.ac b/configure.ac 14Index: git/configure.ac
15index eb0f9d1..a539968 100644 15===================================================================
16--- a/configure.ac 16--- git.orig/configure.ac
17+++ b/configure.ac 17+++ git/configure.ac
18@@ -14,7 +14,7 @@ AC_USE_SYSTEM_EXTENSIONS 18@@ -14,7 +14,7 @@ AC_USE_SYSTEM_EXTENSIONS
19 AC_SYS_LARGEFILE 19 AC_SYS_LARGEFILE
20 AC_PREFIX_DEFAULT([/usr]) 20 AC_PREFIX_DEFAULT([/usr])
@@ -23,7 +23,4 @@ index eb0f9d1..a539968 100644
23+AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests serial-tests]) 23+AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests serial-tests])
24 AM_SILENT_RULES([yes]) 24 AM_SILENT_RULES([yes])
25 LT_INIT([disable-static pic-only]) 25 LT_INIT([disable-static pic-only])
26 26 DOLT
27--
281.9.1
29