The patch titled Subject: scripts/tags.sh: include arch/Kconfig* for tags generation has been added to the -mm tree. Its filename is scripts-tagssh-include-arch-kconfig-for-tags-generation.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/scripts-tagssh-include-arch-kconfig-for-tags-generation.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/scripts-tagssh-include-arch-kconfig-for-tags-generation.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Hou Tao <houtao1@xxxxxxxxxx> Subject: 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/1486206053-38223-1-git-send-email-houtao1@xxxxxxxxxx Signed-off-by: Hou Tao <houtao1@xxxxxxxxxx> Cc: Michal Marek <mmarek@xxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Mathieu Maret <mathieu.maret@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/tags.sh | 2 ++ 1 file changed, 2 insertions(+) diff -puN scripts/tags.sh~scripts-tagssh-include-arch-kconfig-for-tags-generation scripts/tags.sh --- a/scripts/tags.sh~scripts-tagssh-include-arch-kconfig-for-tags-generation +++ a/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 _ Patches currently in -mm which might be from houtao1@xxxxxxxxxx are scripts-tagssh-include-arch-kconfig-for-tags-generation.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html