aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrarit Bhargava2014-02-06 06:51:42 -0600
committerMichal Marek2014-02-06 09:52:07 -0600
commitae63b2d7bdd9bd66b88843be0daf8e37d8f0b574 (patch)
tree2adf58988515c2a79319117b564c664a539a1350 /Makefile
parent38dbfb59d1175ef458d006556061adeaa8751b72 (diff)
downloadlinux-phy-ae63b2d7bdd9bd66b88843be0daf8e37d8f0b574.tar.gz
linux-phy-ae63b2d7bdd9bd66b88843be0daf8e37d8f0b574.tar.xz
linux-phy-ae63b2d7bdd9bd66b88843be0daf8e37d8f0b574.zip
scripts/tags.sh: Ignore *.mod.c
CONFIG_MODVERSIONS=y results in a .mod.c for every compiled file in the kernel. Issuing a 'make cscope' on a compiled kernel tree results in the cscope files containing *.mod.c files. [prarit@prarit linux]# make cscope [prarit@prarit linux]# cat cscope.files | grep mod.c | wc -l 4807 These files are not useful for cscope and should be ignored. For example, # line filename / context / line 1 105 arch/x86/kvm/kvm-intel.mod.c <<GLOBAL>> { 0x618911fc, __VMLINUX_SYMBOL_STR(numa_node) }, 2 508 drivers/block/mtip32xx/mtip32xx.h <<GLOBAL>> int numa_node; 3 55 drivers/block/mtip32xx/mtip32xx.mod.c <<GLOBAL>> { 0x618911fc, __VMLINUX_SYMBOL_STR(numa_node) }, 4 37 drivers/cpufreq/acpi-cpufreq.mod.c <<GLOBAL>> { 0x618911fc, __VMLINUX_SYMBOL_STR(numa_node) }, <snip> Add an export to RCS_FIND_IGNORE so it can be used in scripts/tags.sh and add explicitly ignore *.mod.c files. Signed-off-by: Prarit Bhargava <prarit@redhat.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Kirill Tkhai <tkhai@yandex.ru> Cc: Michael Opdenacker <michael.opdenacker@free-electrons.com> Cc: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 606ef7c4a544..2acd9dde1339 100644
--- a/Makefile
+++ b/Makefile
@@ -414,8 +414,9 @@ export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_ve
414 414
415# Files to ignore in find ... statements 415# Files to ignore in find ... statements
416 416
417RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \ 417export RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \
418 -o -name .pc -o -name .hg -o -name .git \) -prune -o 418 -name CVS -o -name .pc -o -name .hg -o -name .git \) \
419 -prune -o
419export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \ 420export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
420 --exclude CVS --exclude .pc --exclude .hg --exclude .git 421 --exclude CVS --exclude .pc --exclude .hg --exclude .git
421 422