Gentoo Archives: gentoo-commits

From: Alice Ferrazzi <alicef@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:4.14 commit in: /
Date: Fri, 29 Dec 2017 17:54:54
Message-Id: 1514569665.b55625787f4784059c04614dd2411457decd3788.alicef@gentoo
1 commit: b55625787f4784059c04614dd2411457decd3788
2 Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 29 17:47:45 2017 +0000
4 Commit: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 29 17:47:45 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=b5562578
7
8 patch(1) loses the x bit. Kernel build breaks.
9
10 0000_README | 4 ++++
11 ...le-dont-assume-sync-checksh-is-executable.patch | 25 ++++++++++++++++++++++
12 2 files changed, 29 insertions(+)
13
14 diff --git a/0000_README b/0000_README
15 index e43b606..9111187 100644
16 --- a/0000_README
17 +++ b/0000_README
18 @@ -115,6 +115,10 @@ Patch: 2900_dev-root-proc-mount-fix.patch
19 From: https://bugs.gentoo.org/show_bug.cgi?id=438380
20 Desc: Ensure that /dev/root doesn't appear in /proc/mounts when bootint without an initramfs.
21
22 +Patch: 2901_tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch
23 +From: http://www.ozlabs.org/~akpm/mmotm/broken-out/tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch
24 +Desc: patch(1) loses the x bit. Kernel build breaks.
25 +
26 Patch: 4200_fbcondecor.patch
27 From: http://www.mepiscommunity.org/fbcondecor
28 Desc: Bootsplash ported by Conrad Kostecki. (Bug #637434)
29
30 diff --git a/2901_tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch b/2901_tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch
31 new file mode 100644
32 index 0000000..3199be9
33 --- /dev/null
34 +++ b/2901_tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch
35 @@ -0,0 +1,25 @@
36 +From: Andrew Morton <akpm@××××××××××××××××.org>
37 +Subject: tools/objtool/Makefile: don't assume sync-check.sh is executable
38 +
39 +patch(1) loses the x bit. Kernel build breaks.
40 +
41 +Fixes: 3bd51c5a371de ("objtool: Move kernel headers/code sync check to a script")
42 +Cc: Ingo Molnar <mingo@××××××.org>
43 +Cc: Josh Poimboeuf <jpoimboe@××××××.com>
44 +Signed-off-by: Andrew Morton <akpm@××××××××××××××××.org>
45 +---
46 +
47 +
48 +diff -puN tools/objtool/Makefile~tools-objtool-makefile-dont-assume-sync-checksh-is-executable tools/objtool/Makefile
49 +--- a/tools/objtool/Makefile~tools-objtool-makefile-dont-assume-sync-checksh-is-executable
50 ++++ a/tools/objtool/Makefile
51 +@@ -46,7 +46,7 @@ $(OBJTOOL_IN): fixdep FORCE
52 + @$(MAKE) $(build)=objtool
53 +
54 + $(OBJTOOL): $(LIBSUBCMD) $(OBJTOOL_IN)
55 +- @./sync-check.sh
56 ++ @$(CONFIG_SHELL) ./sync-check.sh
57 + $(QUIET_LINK)$(CC) $(OBJTOOL_IN) $(LDFLAGS) -o $@
58 +
59 +
60 +_