You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently encountered an error when trying to setup a default value for boolean options, whenever I also include a help instruction within the menu.
The following works in setting the default value correctly
menu "General options"
config Kconf_Options_Foo
bool "This is the foo option"
default y
endmenu
This, in turn, does not work:
menu "General options"
config Kconf_Options_Foo
bool "This is the foo option"
help "This setups foo, which causes baz"
default y
endmenu
Inverting default and help prevents parsing of KConfig file
menu "General options"
config Kconf_Options_Foo
bool "This is the foo option"
default y
help "This setups foo, which causes baz"
endmenu
produces
menuconfig.py: error: expected 'endmenu' at end of 'Kconfig'
I'm using the latest pip package (14.1.0).
Is this expected behavior? Am I doing something wrong?
Btw I've seen issue #121 however it's not clear to me whether a takeover is already taking place or not; if so, I'd like to report this issue over to the new repo, if any exist.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
I recently encountered an error when trying to setup a default value for boolean options, whenever I also include a help instruction within the menu.
The following works in setting the default value correctly
This, in turn, does not work:
Inverting default and help prevents parsing of KConfig file
produces
I'm using the latest pip package (14.1.0).
Is this expected behavior? Am I doing something wrong?
Btw I've seen issue #121 however it's not clear to me whether a takeover is already taking place or not; if so, I'd like to report this issue over to the new repo, if any exist.
Thanks!
The text was updated successfully, but these errors were encountered: