Skip to content

Commit

Permalink
scripts/tags.sh: include arch/Kconfig* for tags generation
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
Hou Tao authored and torvalds committed Feb 23, 2017
1 parent 8087a56 commit 7659c65
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7659c65

Please sign in to comment.