1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #17597 from leandrolanzieri/pr/tools/genconfig_add_hidden_sym_warning

dist/tools/genconfig: add error on hidden symbols
This commit is contained in:
Kevin "Tristate Tom" Weiss 2022-02-10 13:06:06 +01:00 committed by GitHub
commit d1fc526045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,6 +173,9 @@ def check_config_symbols(kconf):
if rng is not None:
msg = " Check that the value is in the correct range:"
msg += "[{} - {}] {}\n".format(rng[0], rng[1], rng[2])
elif not sym.visibility:
msg = " The symbol is not visible, either it is not "
msg += "configurable or its prompt is hidden."
log_error(msg)