diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-11-27 13:43:43 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-11-27 13:43:43 +0100 |
commit | 9103959499ef1f87381f7c406170afca1ee3bb27 (patch) | |
tree | f30c7139d76e3ed3eaa6ad2f041c25bae8a8c678 /bin/analyze-kconfig.py | |
parent | 7b564fc3f766c2428ba70a449c12024607f555a7 (diff) |
show-model=static: leave out parameter dependence heuristics
Diffstat (limited to 'bin/analyze-kconfig.py')
-rwxr-xr-x | bin/analyze-kconfig.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/analyze-kconfig.py b/bin/analyze-kconfig.py index 0f7c4ba..0900255 100755 --- a/bin/analyze-kconfig.py +++ b/bin/analyze-kconfig.py @@ -493,7 +493,13 @@ def main(): print("--- static model ---") for name in model.names: for attribute in model.attributes(name): - dfatool.cli.print_static(model, static_model, name, attribute) + dfatool.cli.print_static( + model, + static_model, + name, + attribute, + with_dependence="all" in args.show_model, + ) if "param" in args.show_model or "all" in args.show_model: print("--- param model ---") |