]> code.ossystems Code Review - openembedded-core.git/commitdiff
grub: refresh patches
authorRoss Burton <ross.burton@intel.com>
Thu, 8 Mar 2018 18:17:24 +0000 (20:17 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 9 Mar 2018 17:15:58 +0000 (09:15 -0800)
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.

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>
meta/recipes-bsp/grub/files/grub-module-explicitly-keeps-symbole-.module_license.patch

index 935c472cf8fe79c7e90dff5567600d4643b3889a..ffc2d40d8931e7bb2499fa1ba2f46ff617d967d2 100644 (file)
@@ -43,19 +43,16 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
  grub-core/genmod.sh.in | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/grub-core/genmod.sh.in b/grub-core/genmod.sh.in
-index 76df0bb..39a9cfc 100644
---- a/grub-core/genmod.sh.in
-+++ b/grub-core/genmod.sh.in
-@@ -59,7 +59,7 @@ if test x@TARGET_APPLE_CC@ != x1; then
+Index: grub-2.02/grub-core/genmod.sh.in
+===================================================================
+--- grub-2.02.orig/grub-core/genmod.sh.in
++++ grub-2.02/grub-core/genmod.sh.in
+@@ -56,7 +56,7 @@ if test x@TARGET_APPLE_LINKER@ != x1; th
        if test x@platform@ != xemu; then
-           @STRIP@ --strip-unneeded \
+           @TARGET_STRIP@ --strip-unneeded \
                -K grub_mod_init -K grub_mod_fini \
 -              -K _grub_mod_init -K _grub_mod_fini \
 +              -K _grub_mod_init -K _grub_mod_fini -K .module_license \
                -R .note.gnu.gold-version -R .note.GNU-stack \
-               -R .note -R .comment $tmpfile || exit 1
+               -R .note -R .comment -R .ARM.exidx $tmpfile || exit 1
        fi
--- 
-2.8.1
-