diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-01-10 18:15:39 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-01-11 13:09:33 +0100 |
commit | b7bee2858b582164d55c32be44df3fcb42cafc78 (patch) | |
tree | d908808a56549ec42e1b269421fd1be2dbd57f45 /target/linux/generic/patches-4.1/222-perf-build-Do-not-fail-on-missing-Build-file.patch | |
parent | b1dbe6028eed57a89ae94c5e61e0b1e65f3aeb80 (diff) | |
download | mtk-20170518-b7bee2858b582164d55c32be44df3fcb42cafc78.zip mtk-20170518-b7bee2858b582164d55c32be44df3fcb42cafc78.tar.gz mtk-20170518-b7bee2858b582164d55c32be44df3fcb42cafc78.tar.bz2 |
kernel: remove linux 4.1 support
The only target still referencing it is omap24xx, and it is marked as
broken.
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target/linux/generic/patches-4.1/222-perf-build-Do-not-fail-on-missing-Build-file.patch')
-rw-r--r-- | target/linux/generic/patches-4.1/222-perf-build-Do-not-fail-on-missing-Build-file.patch | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/target/linux/generic/patches-4.1/222-perf-build-Do-not-fail-on-missing-Build-file.patch b/target/linux/generic/patches-4.1/222-perf-build-Do-not-fail-on-missing-Build-file.patch deleted file mode 100644 index 2026e4d..0000000 --- a/target/linux/generic/patches-4.1/222-perf-build-Do-not-fail-on-missing-Build-file.patch +++ /dev/null @@ -1,57 +0,0 @@ -From d7a3d85e08477a979933a2bb3b525a8de99543c2 Mon Sep 17 00:00:00 2001 -From: Jiri Olsa <jolsa@kernel.org> -Date: Fri, 29 May 2015 17:42:58 +0200 -Subject: [PATCH] perf build: Do not fail on missing Build file - -Allow nesting into directories without Build file. Currently we force -include of the Build file, which fails the build when the Build file is -missing. - -We already support empty *-in.o' objects if there's nothing in the -directory to be compiled, so we can just use it for missing Build file -cases. - -Also adding this case under tests. - -Reported-by: Rabin Vincent <rabin.vincent@axis.com> -Signed-off-by: Jiri Olsa <jolsa@kernel.org> -Cc: David Ahern <dsahern@gmail.com> -Cc: Namhyung Kim <namhyung@kernel.org> -Cc: Paul Mackerras <paulus@samba.org> -Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> -Cc: Rabin Vincent <rabin.vincent@axis.com> -Link: http://lkml.kernel.org/r/1432914178-24086-1-git-send-email-jolsa@kernel.org -Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> ---- - tools/build/Makefile.build | 2 +- - tools/build/tests/ex/Build | 1 + - tools/build/tests/ex/empty2/README | 2 ++ - 3 files changed, 4 insertions(+), 1 deletion(-) - create mode 100644 tools/build/tests/ex/empty2/README - ---- a/tools/build/Makefile.build -+++ b/tools/build/Makefile.build -@@ -37,7 +37,7 @@ subdir-obj-y := - - # Build definitions - build-file := $(dir)/Build --include $(build-file) -+-include $(build-file) - - quiet_cmd_flex = FLEX $@ - quiet_cmd_bison = BISON $@ ---- a/tools/build/tests/ex/Build -+++ b/tools/build/tests/ex/Build -@@ -2,6 +2,7 @@ ex-y += ex.o - ex-y += a.o - ex-y += b.o - ex-y += empty/ -+ex-y += empty2/ - - libex-y += c.o - libex-y += d.o ---- /dev/null -+++ b/tools/build/tests/ex/empty2/README -@@ -0,0 +1,2 @@ -+This directory is left intentionally without Build file -+to test proper nesting into Build-less directories. |