diff options
author | Marcin Nowakowski <marcin.nowakowski@imgtec.com> | 2017-02-13 05:15:56 -0500 |
---|---|---|
committer | James Hogan <james.hogan@imgtec.com> | 2017-02-14 04:00:26 -0500 |
commit | 0d070d2b5c718180a2e296918618da2c18c298e5 (patch) | |
tree | 6389634185b6f69db32e5b4430410c79ab7b6fc8 | |
parent | 26dd3e4ff9ac1aa576c97d23d7425d2544dbc5bf (diff) |
Kbuild: Add cpp_its_S in ksym_dep_filter
Add a new command cpp_its_S introduced in commit cf2a5e0bb4c6 ("MIPS:
Support generating Flattened Image Trees (.itb)") to ksym_dep_filter
handler - otherwise a warning is produced during the build of MIPS
platforms (when vmlinux.*.itb target is chosen).
Signed-off-by: Marcin Nowakowski <marcin.nowakowski@imgtec.com>
Cc: Michal Marek <mmarek@suse.com>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/15278/
Signed-off-by: James Hogan <james.hogan@imgtec.com>
-rw-r--r-- | scripts/Kbuild.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 179219845dfc..d6ca649cb0e9 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include | |||
@@ -284,7 +284,7 @@ ksym_dep_filter = \ | |||
284 | $(CPP) $(call flags_nodeps,c_flags) -D__KSYM_DEPS__ $< ;; \ | 284 | $(CPP) $(call flags_nodeps,c_flags) -D__KSYM_DEPS__ $< ;; \ |
285 | as_*_S|cpp_s_S) \ | 285 | as_*_S|cpp_s_S) \ |
286 | $(CPP) $(call flags_nodeps,a_flags) -D__KSYM_DEPS__ $< ;; \ | 286 | $(CPP) $(call flags_nodeps,a_flags) -D__KSYM_DEPS__ $< ;; \ |
287 | boot*|build*|*cpp_lds_S|dtc|host*|vdso*) : ;; \ | 287 | boot*|build*|cpp_its_S|*cpp_lds_S|dtc|host*|vdso*) : ;; \ |
288 | *) echo "Don't know how to preprocess $(1)" >&2; false ;; \ | 288 | *) echo "Don't know how to preprocess $(1)" >&2; false ;; \ |
289 | esac | tr ";" "\n" | sed -rn 's/^.*=== __KSYM_(.*) ===.*$$/KSYM_\1/p' | 289 | esac | tr ";" "\n" | sed -rn 's/^.*=== __KSYM_(.*) ===.*$$/KSYM_\1/p' |
290 | 290 | ||