The patch titled Subject: scripts/tags.sh: parse *.dts.tmp for compiled sources has been added to the -mm tree. Its filename is scripts-tagssh-parse-dtstmp-for-compiled-sources.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/scripts-tagssh-parse-dtstmp-for-compiled-sources.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/scripts-tagssh-parse-dtstmp-for-compiled-sources.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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Jialu Xu <xujialu@xxxxxxxxx> Subject: scripts/tags.sh: parse *.dts.tmp for compiled sources There are files listed in *.dts.tmp, parse them as *.cmd for compiled sources. Link: https://lkml.kernel.org/r/20220221084614.1682022-1-xujialu@xxxxxxxxx Signed-off-by: Jialu Xu <xujialu@xxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Cc: Masahiro Yamada <masahiroy@xxxxxxxxxx> Cc: Jonathan Corbet <corbet@xxxxxxx> Cc: Rustam Kovhaev <rkovhaev@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/tags.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/scripts/tags.sh~scripts-tagssh-parse-dtstmp-for-compiled-sources +++ a/scripts/tags.sh @@ -97,8 +97,8 @@ all_compiled_sources() { realpath -es $([ -z "$KBUILD_ABS_SRCTREE" ] && echo --relative-to=.) \ include/generated/autoconf.h $(find $ignore -name "*.cmd" -exec \ - grep -Poh '(?(?=^source_.* \K).*|(?=^ \K\S).*(?= \\))' {} \+ | - awk '!a[$0]++') | sort -u + grep -Poh '(?(?=^source_.* \K).*|(?=^ \K\S).*(?= \\))' {} \+ | awk '!a[$0]++') \ + $(find -name "*.dts.tmp" -exec grep -Poh '(?(?=^# \d+ "\K).*(?="))' {} \+) | sort -u } all_target_sources() _ Patches currently in -mm which might be from xujialu@xxxxxxxxx are scripts-tagssh-parse-dtstmp-for-compiled-sources.patch