diff options
Diffstat (limited to 'listnewconfig.py')
| -rwxr-xr-x | listnewconfig.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/listnewconfig.py b/listnewconfig.py index 06d0cf1..59de141 100755 --- a/listnewconfig.py +++ b/listnewconfig.py @@ -18,7 +18,9 @@ from kconfiglib import standard_kconfig, BOOL, TRISTATE, INT, HEX, STRING, \ def main(): kconf = standard_kconfig() - kconf.load_config() + # Make it possible to filter this message out + sys.stderr.write(kconf.load_config() + "\n") + for sym in kconf.unique_defined_syms: # Only show symbols that can be toggled. Choice symbols are a special # case in that sym.assignable will be (2,) (length 1) for visible |
