mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-24 08:59:42 +07:00
1903c51190
The calculation of 'choice' is a bit complicated part in Kconfig. The behavior of 'y' choice is intuitive. If choice values are tristate, the choice can be 'm' where each value can be enabled independently. Also, if a choice is marked as 'optional', the whole choice can be invisible. Test basic functionality of choice. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Ulf Magnusson <ulfalizer@gmail.com>
10 lines
249 B
Plaintext
10 lines
249 B
Plaintext
CONFIG_MODULES=y
|
|
# CONFIG_BOOL_CHOICE0 is not set
|
|
CONFIG_BOOL_CHOICE1=y
|
|
# CONFIG_OPT_BOOL_CHOICE0 is not set
|
|
CONFIG_OPT_BOOL_CHOICE1=y
|
|
# CONFIG_TRI_CHOICE0 is not set
|
|
CONFIG_TRI_CHOICE1=y
|
|
# CONFIG_OPT_TRI_CHOICE0 is not set
|
|
CONFIG_OPT_TRI_CHOICE1=y
|