Re: [PATCH] scripts/tags.sh: parse *.dts.tmp for compiled sources

From: Masahiro Yamada
Date: Mon Feb 21 2022 - 22:07:25 EST


On Mon, Feb 21, 2022 at 5:46 PM Jialu Xu <xujialu@xxxxxxxxx> wrote:
>
> There are files listed in *.dts.tmp, parse them as *.cmd for compiled sources.
>
> Signed-off-by: Jialu Xu <xujialu@xxxxxxxxx>
> ---

Why?




> scripts/tags.sh | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/tags.sh b/scripts/tags.sh
> index 16d475b3e203..f64c33f4dabf 100755
> --- a/scripts/tags.sh
> +++ b/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()
> --
> 2.30.2
>
>


--
Best Regards
Masahiro Yamada