linux-um.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Randy Dunlap <rdunlap@infradead.org>
To: Christoph Hellwig <hch@lst.de>,
	Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Richard Weinberger <richard@nod.at>,
	linux-um@lists.infradead.org, linux-kernel@vger.kernel.org,
	linux-kbuild@vger.kernel.org
Subject: Re: [PATCH 5/9] Kconfig: consolidate the "Kernel hacking" menu
Date: Sun, 8 Jul 2018 09:34:29 -0700	[thread overview]
Message-ID: <fd8c89be-1270-a54e-a69b-350105a04eca@infradead.org> (raw)
In-Reply-To: <20180708152004.21679-6-hch@lst.de>

On 07/08/2018 08:20 AM, Christoph Hellwig wrote:
> Move the source of lib/Kconfig.debug and arch/$(ARCH)/Kconfig.debug to
> the top-level Kconfig.  For two architectures that means moving their
> arch-specific symbols in that menu into a new arch Kconfig.debug file,
> and for a few more creating a dummy file so that we can include it
> unconditionally.
> 
> Also move the actual 'Kernel hacking' menu to lib/Kconfig.debug, where
> it belongs.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Acked-by: Randy Dunlap <rdunlap@infradead.org>
Tested-by: Randy Dunlap <rdunlap@infradead.org>


> ---
>  Kconfig                       |  2 ++
>  arch/alpha/Kconfig            |  2 --
>  arch/alpha/Kconfig.debug      |  5 ----
>  arch/arc/Kconfig              |  1 -
>  arch/arc/Kconfig.debug        |  5 ----
>  arch/arm/Kconfig              |  2 --
>  arch/arm/Kconfig.debug        |  5 ----
>  arch/arm64/Kconfig            |  2 --
>  arch/arm64/Kconfig.debug      |  5 ----
>  arch/c6x/Kconfig              | 15 ------------
>  arch/c6x/Kconfig.debug        | 11 +++++++++
>  arch/h8300/Kconfig            |  6 -----
>  arch/h8300/Kconfig.debug      |  1 +
>  arch/hexagon/Kconfig          |  4 ----
>  arch/hexagon/Kconfig.debug    |  1 +
>  arch/ia64/Kconfig             |  2 --
>  arch/ia64/Kconfig.debug       |  5 ----
>  arch/m68k/Kconfig             |  2 --
>  arch/m68k/Kconfig.debug       |  5 ----
>  arch/microblaze/Kconfig       |  2 --
>  arch/microblaze/Kconfig.debug |  6 -----
>  arch/mips/Kconfig             |  2 --
>  arch/mips/Kconfig.debug       |  5 ----
>  arch/nds32/Kconfig            |  4 ----
>  arch/nds32/Kconfig.debug      |  1 +
>  arch/nios2/Kconfig            |  2 --
>  arch/nios2/Kconfig.debug      |  5 ----
>  arch/openrisc/Kconfig         |  6 -----
>  arch/openrisc/Kconfig.debug   |  1 +
>  arch/parisc/Kconfig           |  2 --
>  arch/parisc/Kconfig.debug     |  5 ----
>  arch/powerpc/Kconfig          |  2 --
>  arch/powerpc/Kconfig.debug    |  5 ----
>  arch/riscv/Kconfig            | 45 -----------------------------------
>  arch/riscv/Kconfig.debug      | 37 ++++++++++++++++++++++++++++
>  arch/s390/Kconfig             |  2 --
>  arch/s390/Kconfig.debug       |  5 ----
>  arch/sh/Kconfig               |  2 --
>  arch/sh/Kconfig.debug         |  5 ----
>  arch/sparc/Kconfig            |  2 --
>  arch/sparc/Kconfig.debug      |  5 ----
>  arch/um/Kconfig               |  2 --
>  arch/um/Kconfig.debug         |  5 ----
>  arch/unicore32/Kconfig        |  2 --
>  arch/unicore32/Kconfig.debug  |  5 ----
>  arch/x86/Kconfig              |  2 --
>  arch/x86/Kconfig.debug        |  5 ----
>  arch/xtensa/Kconfig           |  2 --
>  arch/xtensa/Kconfig.debug     |  5 ----
>  lib/Kconfig.debug             |  6 +++++
>  50 files changed, 60 insertions(+), 206 deletions(-)
>  create mode 100644 arch/c6x/Kconfig.debug
>  create mode 100644 arch/h8300/Kconfig.debug
>  create mode 100644 arch/hexagon/Kconfig.debug
>  create mode 100644 arch/nds32/Kconfig.debug
>  create mode 100644 arch/openrisc/Kconfig.debug
>  create mode 100644 arch/riscv/Kconfig.debug


-- 
~Randy

_______________________________________________
linux-um mailing list
linux-um@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-um


  reply	other threads:[~2018-07-08 16:34 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-08 15:19 include architecture Kconfig files from top-level Kconfig v2 Christoph Hellwig
2018-07-08 15:19 ` [PATCH 1/9] um: stop abusing KBUILD_KCONFIG Christoph Hellwig
2018-07-08 15:19 ` [PATCH 2/9] um: cleanup Kconfig files Christoph Hellwig
2018-07-08 15:19 ` [PATCH 3/9] um: create a proper drivers Kconfig Christoph Hellwig
2018-07-08 15:19 ` [PATCH 4/9] kconfig: include common Kconfig files from top-level Kconfig Christoph Hellwig
2018-07-11 12:21   ` Masahiro Yamada
2018-07-17  6:33     ` Randy Dunlap
2018-07-17  6:42       ` Randy Dunlap
2018-07-17  6:44         ` Randy Dunlap
2018-07-17  6:55           ` Randy Dunlap
2018-07-17 13:00         ` Christoph Hellwig
2018-07-17 12:59       ` Christoph Hellwig
2018-07-18  7:06     ` Randy Dunlap
2018-07-19 13:11       ` Christoph Hellwig
2018-07-20 19:57         ` Dirk Gouders
2018-07-08 15:20 ` [PATCH 5/9] Kconfig: consolidate the "Kernel hacking" menu Christoph Hellwig
2018-07-08 16:34   ` Randy Dunlap [this message]
2018-07-08 15:20 ` [PATCH 6/9] kconfig: include kernel/Kconfig.preempt from init/Kconfig Christoph Hellwig
2018-07-08 16:30   ` Randy Dunlap
2018-07-08 15:20 ` [PATCH 7/9] arch/Kconfig: use a menu to reduce clutter Christoph Hellwig
2018-07-08 15:20 ` [PATCH 8/9] kconfig: move the "Executable file formats" menu to fs/Kconfig.binfmt Christoph Hellwig
2018-07-08 15:20 ` [PATCH 9/9] kconfig: add a Memory Management options" menu Christoph Hellwig
2018-07-23 10:46 ` include architecture Kconfig files from top-level Kconfig v2 Richard Weinberger

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=fd8c89be-1270-a54e-a69b-350105a04eca@infradead.org \
    --to=rdunlap@infradead.org \
    --cc=hch@lst.de \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-um@lists.infradead.org \
    --cc=richard@nod.at \
    --cc=yamada.masahiro@socionext.com \
    /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 NNTP newsgroup(s).