From 639f364b4692228503baa7a3f03b7b3bbaea08cb Mon Sep 17 00:00:00 2001 From: Douglas RAILLARD Date: Tue, 18 Dec 2018 15:32:33 +0000 Subject: [PATCH] platinfo: Update description of keys Add details on some key format and remove some deprecation message. --- lisa/platforms/platinfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisa/platforms/platinfo.py b/lisa/platforms/platinfo.py index 4ff605844..f996a36ee 100644 --- a/lisa/platforms/platinfo.py +++ b/lisa/platforms/platinfo.py @@ -54,8 +54,8 @@ class PlatformInfo(MultiSrcConf, HideExekallID): KeyDesc('abi', 'ABI, e.g. "arm64"', [str]), KeyDesc('os', 'OS being used, e.g. "linux"', [str]), KeyDesc('name', 'Free-form name of the board', [str]), - KeyDesc('cpus-count', 'Compat key: number of CPUs', [int]), - KeyDesc('freq-domains', 'Frequency domains', [IntListList]), + KeyDesc('cpus-count', 'Number of CPUs', [int]), + KeyDesc('freq-domains', 'Frequency domains modeled by a list of CPU id for each domain', [IntListList]), KeyDesc('freqs', 'Dictionnary of CPU ID to list of frequencies', [IntIntListDict]), )) """Some keys have a reserved meaning with an associated type.""" -- GitLab