[PATCH] scripts/tags.sh: include arch/Kconfig* for tags generation

From: Hou Tao
Date: Sat Feb 04 2017 - 06:01:46 EST


Kconfig files under arch/ directory are ignored by all_kconfigs(),
so include them for tags generation.

Signed-off-by: Hou Tao <houtao1@xxxxxxxxxx>
---
scripts/tags.sh | 2 ++
1 file changed, 2 insertions(+)

diff --git a/scripts/tags.sh b/scripts/tags.sh
index df5fa77..d661f2f 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
--
2.5.0