Linux-arch Archive mirror
 help / color / mirror / Atom feed
From: Masahiro Yamada <masahiroy@kernel.org>
To: Linux Kbuild mailing list <linux-kbuild@vger.kernel.org>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Michal Simek <michal.simek@xilinx.com>,
	linux-arch <linux-arch@vger.kernel.org>,
	David Howells <dhowells@redhat.com>,
	David Woodhouse <dwmw2@infradead.org>,
	keyrings@vger.kernel.org, Richard Weinberger <richard@nod.at>,
	Nicolas Schier <n.schier@avm.de>
Subject: Re: [PATCH v2 00/11] kbuild: do not quote string values in Makefile
Date: Wed, 5 Jan 2022 08:48:00 +0900	[thread overview]
Message-ID: <CAK7LNAQ98p=UbtdgdTkdO1djA--Ch7QwmR=0Q11QL6aKKZYC2w@mail.gmail.com> (raw)
In-Reply-To: <20211214025355.1267796-1-masahiroy@kernel.org>

On Tue, Dec 14, 2021 at 11:55 AM Masahiro Yamada <masahiroy@kernel.org> wrote:
>
>
> This patch refactors the code as outlined in:
>
>   https://lore.kernel.org/linux-kbuild/CAK7LNAR-VXwHFEJqCcrFDZj+_4+Xd6oynbj_0eS8N504_ydmyw@mail.gmail.com/
>
> First some patches refactor certs/Makefile. This Makefile is written
> in a too complicated way.
>
> I will revert cd8c917a56f20f48748dd43d9ae3caff51d5b987
> after this lands in the upstream.
>
>



Applied to linux-kbuild.



> Masahiro Yamada (11):
>   certs: use $< and $@ to simplify the key generation rule
>   certs: unify duplicated cmd_extract_certs and improve the log
>   certs: remove unneeded -I$(srctree) option for system_certificates.o
>   certs: refactor file cleaning
>   certs: remove misleading comments about GCC PR
>   kbuild: stop using config_filename in scripts/Makefile.modsign
>   certs: simplify $(srctree)/ handling and remove config_filename macro
>   kbuild: do not include include/config/auto.conf from shell scripts
>   kbuild: do not quote string values in include/config/auto.conf
>   certs: move scripts/extract-cert to certs/
>   microblaze: use built-in function to get CPU_{MAJOR,MINOR,REV}
>
>  MAINTAINERS                                   |  1 -
>  Makefile                                      |  6 +-
>  arch/arc/Makefile                             |  4 +-
>  arch/arc/boot/dts/Makefile                    |  4 +-
>  arch/h8300/boot/dts/Makefile                  |  6 +-
>  arch/microblaze/Makefile                      |  8 +--
>  arch/nds32/boot/dts/Makefile                  |  7 +--
>  arch/nios2/boot/dts/Makefile                  |  2 +-
>  arch/openrisc/boot/dts/Makefile               |  7 +--
>  arch/powerpc/boot/Makefile                    |  2 +-
>  arch/riscv/boot/dts/canaan/Makefile           |  4 +-
>  arch/sh/boot/dts/Makefile                     |  4 +-
>  arch/xtensa/Makefile                          |  2 +-
>  arch/xtensa/boot/dts/Makefile                 |  5 +-
>  certs/.gitignore                              |  1 +
>  certs/Makefile                                | 55 +++++++------------
>  {scripts => certs}/extract-cert.c             |  2 +-
>  drivers/acpi/Makefile                         |  2 +-
>  drivers/base/firmware_loader/builtin/Makefile |  4 +-
>  init/Makefile                                 |  2 +-
>  net/wireless/Makefile                         |  4 +-
>  scripts/.gitignore                            |  1 -
>  scripts/Kbuild.include                        | 47 ----------------
>  scripts/Makefile                              | 11 +---
>  scripts/Makefile.modinst                      |  4 +-
>  scripts/gen_autoksyms.sh                      | 11 +---
>  scripts/kconfig/confdata.c                    |  2 +-
>  scripts/link-vmlinux.sh                       | 47 ++++++++--------
>  scripts/remove-stale-files                    |  2 +
>  scripts/setlocalversion                       |  9 ++-
>  usr/Makefile                                  |  2 +-
>  31 files changed, 87 insertions(+), 181 deletions(-)
>  rename {scripts => certs}/extract-cert.c (98%)
>
> --
> 2.32.0
>


-- 
Best Regards
Masahiro Yamada

      parent reply	other threads:[~2022-01-04 23:49 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-14  2:53 [PATCH v2 00/11] kbuild: do not quote string values in Makefile Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 01/11] certs: use $< and $@ to simplify the key generation rule Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 02/11] certs: unify duplicated cmd_extract_certs and improve the log Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 03/11] certs: remove unneeded -I$(srctree) option for system_certificates.o Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 04/11] certs: refactor file cleaning Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 05/11] certs: remove misleading comments about GCC PR Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 06/11] kbuild: stop using config_filename in scripts/Makefile.modsign Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 07/11] certs: simplify $(srctree)/ handling and remove config_filename macro Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 08/11] kbuild: do not include include/config/auto.conf from shell scripts Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 09/11] kbuild: do not quote string values in include/config/auto.conf Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 10/11] certs: move scripts/extract-cert to certs/ Masahiro Yamada
2021-12-14  2:53 ` [PATCH v2 11/11] microblaze: use built-in function to get CPU_{MAJOR,MINOR,REV} Masahiro Yamada
2022-01-04 23:48 ` Masahiro Yamada [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAK7LNAQ98p=UbtdgdTkdO1djA--Ch7QwmR=0Q11QL6aKKZYC2w@mail.gmail.com' \
    --to=masahiroy@kernel.org \
    --cc=dhowells@redhat.com \
    --cc=dwmw2@infradead.org \
    --cc=keyrings@vger.kernel.org \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=michal.simek@xilinx.com \
    --cc=n.schier@avm.de \
    --cc=richard@nod.at \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).