aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHou Tao <[email protected]>2017-02-22 15:40:29 -0800
committerLinus Torvalds <[email protected]>2017-02-22 16:41:26 -0800
commit7659c655bededecd88f6f25102ba3ab926af92cc (patch)
tree7d1fa271972e9dba87760ae3d4177feae9930b9a
parent8087a5609dbf73553a226f1ce0b3a14954adab34 (diff)
scripts/tags.sh: include arch/Kconfig* for tags generation
Kconfig files under arch/ directory are ignored by all_kconfigs(), so include them for tags generation. Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Hou Tao <[email protected]> Cc: Michal Marek <[email protected]> Cc: Joe Perches <[email protected]> Cc: Mathieu Maret <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rwxr-xr-xscripts/tags.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/tags.sh b/scripts/tags.sh
index df5fa777d300..d661f2f3ef61 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -128,6 +128,8 @@ all_target_sources()
all_kconfigs()
{
+ find ${tree}arch/ -maxdepth 1 $ignore \
+ -name "Kconfig*" -not -type l -print;
for arch in $ALLSOURCE_ARCHS; do
find_sources $arch 'Kconfig*'
done