aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2017-02-11 19:02:50 +0100
committerFelix Fietkau <nbd@nbd.name>2017-02-11 19:02:52 +0100
commite0e5f8ca2f6feaf9dc30d0c29619f2545800e790 (patch)
tree134e3bbcf7c6a172bee4985cd57901dcfc320ff8
parent412e0bbf25cf30b4e11706f5ffea3b0925e6fa61 (diff)
downloadupstream-e0e5f8ca2f6feaf9dc30d0c29619f2545800e790.tar.gz
upstream-e0e5f8ca2f6feaf9dc30d0c29619f2545800e790.tar.bz2
upstream-e0e5f8ca2f6feaf9dc30d0c29619f2545800e790.zip
kernel: fix linux 4.9 host tools portability issues
Signed-off-by: Felix Fietkau <nbd@nbd.name>
-rw-r--r--target/linux/generic/patches-4.9/211-host_tools_portability.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/target/linux/generic/patches-4.9/211-host_tools_portability.patch b/target/linux/generic/patches-4.9/211-host_tools_portability.patch
new file mode 100644
index 0000000000..73fd50d6f4
--- /dev/null
+++ b/target/linux/generic/patches-4.9/211-host_tools_portability.patch
@@ -0,0 +1,28 @@
+--- a/tools/perf/pmu-events/jevents.c
++++ b/tools/perf/pmu-events/jevents.c
+@@ -35,6 +35,7 @@
+ #include <stdlib.h>
+ #include <errno.h>
+ #include <string.h>
++#include <strings.h>
+ #include <ctype.h>
+ #include <unistd.h>
+ #include <stdarg.h>
+--- a/tools/perf/pmu-events/json.c
++++ b/tools/perf/pmu-events/json.c
+@@ -38,7 +38,6 @@
+ #include <unistd.h>
+ #include "jsmn.h"
+ #include "json.h"
+-#include <linux/kernel.h>
+
+
+ static char *mapfile(const char *fn, size_t *size)
+--- a/tools/build/Build.include
++++ b/tools/build/Build.include
+@@ -95,4 +95,4 @@ cxx_flags = -Wp,-MD,$(depfile),-MT,$@ $(
+ ###
+ ## HOSTCC C flags
+
+-host_c_flags = -Wp,-MD,$(depfile),-MT,$@ $(CHOSTFLAGS) -D"BUILD_STR(s)=\#s" $(CHOSTFLAGS_$(basetarget).o) $(CHOSTFLAGS_$(obj))
++host_c_flags = -MD -MF $(depfile) -MT $@ $(CHOSTFLAGS) -D"BUILD_STR(s)=\#s" $(CHOSTFLAGS_$(basetarget).o) $(CHOSTFLAGS_$(obj))