Commit 61233b74 by Alexander Popov

Don't add options without explicitly recommended values to Kconfig fragments

That's important for the '--generate' mode.
parent 154f1be2
......@@ -405,6 +405,8 @@ def main():
for opt in config_checklist:
if opt.name == 'CONFIG_ARCH_MMAP_RND_BITS':
continue # don't add CONFIG_ARCH_MMAP_RND_BITS because its value needs refinement
if opt.expected == 'is not off':
continue # don't add Kconfig options without explicitly recommended values
if opt.expected == 'is not set':
print(f'# {opt.name} is not set')
else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment