summaryrefslogtreecommitdiffstats
path: root/Documentation/kbuild
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2024-09-29 19:32:37 +0200
committerMasahiro Yamada <masahiroy@kernel.org>2024-11-04 09:53:09 +0100
commitbea2c5ef789a37bace99f2f45eeef3be4559b228 (patch)
tree37946d13b3548d04456070e1c5be87ff3f6abb78 /Documentation/kbuild
parentusb: use "prompt" instead of "bool" for choice prompts (diff)
downloadlinux-bea2c5ef789a37bace99f2f45eeef3be4559b228.tar.xz
linux-bea2c5ef789a37bace99f2f45eeef3be4559b228.zip
kconfig: remove support for "bool" prompt for choice entries
Since commit fde192511bdb ("kconfig: remove tristate choice support"), all choice blocks are now boolean. There is no longer a need to specify the choice type explicitly. All "bool" prompts in choice entries have been converted to "prompt". This commit removes support for the "bool" syntax in choice entries. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Documentation/kbuild')
-rw-r--r--Documentation/kbuild/kconfig-language.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/kbuild/kconfig-language.rst b/Documentation/kbuild/kconfig-language.rst
index 43037be96a16..2619fdf56e68 100644
--- a/Documentation/kbuild/kconfig-language.rst
+++ b/Documentation/kbuild/kconfig-language.rst
@@ -412,8 +412,8 @@ choices::
<choice block>
"endchoice"
-This defines a choice group and accepts any of the above attributes as
-options.
+This defines a choice group and accepts "prompt", "default", "depends on", and
+"help" attributes as options.
A choice only allows a single config entry to be selected.