summaryrefslogtreecommitdiff
path: root/bin/analyze-kconfig.py
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2024-01-22 13:05:52 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2024-01-22 13:05:52 +0100
commit29eb6f2f9a65a876d6d276594cf6107ce57c29a4 (patch)
tree8bc82159f4c77d240b5b6e03933890b3fbeebb95 /bin/analyze-kconfig.py
parent2a8aed73ba35107e35b2343670c01c5f760282b0 (diff)
Add --skip-param-stats support to analyze-{archive,log}
Diffstat (limited to 'bin/analyze-kconfig.py')
-rwxr-xr-xbin/analyze-kconfig.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/bin/analyze-kconfig.py b/bin/analyze-kconfig.py
index 7714fdc..76e31dd 100755
--- a/bin/analyze-kconfig.py
+++ b/bin/analyze-kconfig.py
@@ -71,11 +71,6 @@ def main():
help="Show Kconfig symbols which are only present in a single configuration. Must be used with an experiment result directory.",
)
parser.add_argument(
- "--skip-param-stats",
- action="store_true",
- help="Do not compute param stats that are required for RMT. Use this for large kconfig files.",
- )
- parser.add_argument(
"--max-std",
type=str,
metavar="VALUE_OR_MAP",
@@ -148,10 +143,6 @@ def main():
args = parser.parse_args()
dfatool.cli.sanity_check(args)
- if args.skip_param_stats and not args.force_tree:
- print("--skip-param-stats requires --force-tree", file=sys.stderr)
- sys.exit(1)
-
if args.log_level:
numeric_level = getattr(logging, args.log_level.upper(), None)
if not isinstance(numeric_level, int):