public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] MIPS: fix the "CPU type" choice structure
@ 2024-01-27 16:23 Masahiro Yamada
  2024-01-27 16:23 ` [PATCH 1/1] MIPS: move unselectable entries out of the "CPU type" choice Masahiro Yamada
  0 siblings, 1 reply; 4+ messages in thread
From: Masahiro Yamada @ 2024-01-27 16:23 UTC (permalink / raw)
  To: Thomas Bogendoerfer, linux-mips
  Cc: linux-kbuild, Masahiro Yamada, linux-kernel


The bool type "choice" is meant to list exclusively selected config
options.

Unless you are familiar with the Kconfig internals, you will not
understand how CONFIG_B can be enabled in the following code:

  choice
         prompt "Choose one of them, but how to choose B?"

  config A
          bool "A"

  config B
          bool "B"
          depends on A

  config C
          bool "C"

  endchoice

B is not a choice value because it becomes a child of A, as a side-effect
of re-paranting in menu_finalize().
It is unreadable, and I even consider it as a bug.
My plan is to forbid such a silly choice structure.

Just write as follows:

  choice
          prompt "Choose one of them"

  config A
          bool "A"

  config C
          bool "C"

  endchoice

  config B
          bool "B"
          depends on A

Fortunately, arch/mips/Kconfig seems to be the only file I need to fix.



Masahiro Yamada (1):
  MIPS: move unselectable entries out of the "CPU type" choice

 arch/mips/Kconfig | 76 +++++++++++++++++++++++------------------------
 1 file changed, 38 insertions(+), 38 deletions(-)

-- 
2.40.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-02-20 13:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-27 16:23 [PATCH 0/1] MIPS: fix the "CPU type" choice structure Masahiro Yamada
2024-01-27 16:23 ` [PATCH 1/1] MIPS: move unselectable entries out of the "CPU type" choice Masahiro Yamada
2024-01-27 19:50   ` Jiaxun Yang
2024-02-20 13:38   ` Thomas Bogendoerfer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox