kconfig: tests: fix typo in commentscripts/kconfig/tests/no_write_if_dep_unmet/__init__.py contains a typo"COFIG_" for "CONFIG_". Fix it.Discovered while searching for typos in CONFIG_* variable
kconfig: tests: fix typo in commentscripts/kconfig/tests/no_write_if_dep_unmet/__init__.py contains a typo"COFIG_" for "CONFIG_". Fix it.Discovered while searching for typos in CONFIG_* variable references.Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>Link: https://patch.msgid.link/20260609021712.7965-1-enelsonmoore@gmail.comSigned-off-by: Nathan Chancellor <nathan@kernel.org>
show more ...
kconfig: convert to SPDX License IdentifierAll files in lxdialog/ are licensed under GPL-2.0+, and the rest areunder GPL-2.0. I added GPL-2.0 tags to test scripts in tests/.Documentation/process
kconfig: convert to SPDX License IdentifierAll files in lxdialog/ are licensed under GPL-2.0+, and the rest areunder GPL-2.0. I added GPL-2.0 tags to test scripts in tests/.Documentation/process/license-rules.rst does not suggest anythingabout the flex/bison files. Because flex does not accept the C++comment style at the very top of a file, I used the C style forzconf.l, and so for zconf.y for consistency.Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
kconfig: make default prompt of mainmenu less specificIf "mainmenu" is not specified, "Linux Kernel Configuration" is usedas a default prompt.Given that Kconfig is used in other projects than Li
kconfig: make default prompt of mainmenu less specificIf "mainmenu" is not specified, "Linux Kernel Configuration" is usedas a default prompt.Given that Kconfig is used in other projects than Linux, let's usea more generic prompt, "Main menu".Suggested-by: Sam Ravnborg <sam@ravnborg.org>Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
kconfig: tests: check unneeded "is not set" with unmet dependencyCommit cb67ab2cd2b8 ("kconfig: do not write choice values when theirdependency becomes n") fixed a problem where "# CONFIG_... is n
kconfig: tests: check unneeded "is not set" with unmet dependencyCommit cb67ab2cd2b8 ("kconfig: do not write choice values when theirdependency becomes n") fixed a problem where "# CONFIG_... is not set"for choice values are wrongly written into the .config file when theyare once visible, then become invisible later.Add a test for this naive case.Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>Reviewed-by: Ulf Magnusson <ulfalizer@gmail.com>