From b1a28fd9857cf50e30b91ac32185f522167e53f9 Mon Sep 17 00:00:00 2001 From: Brendan Moran Date: Mon, 8 Aug 2022 22:09:25 +0100 Subject: [PATCH 1/2] Fix an error in baseline example generation Baseline examples use set-params instead of override-params. This is not correct by default. --- suit_tool/compile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/suit_tool/compile.py b/suit_tool/compile.py index c740566..54458e4 100644 --- a/suit_tool/compile.py +++ b/suit_tool/compile.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # ---------------------------------------------------------------------------- -# Copyright 2019-2020 ARM Limited or its affiliates +# Copyright 2019-2022 ARM Limited or its affiliates # # SPDX-License-Identifier: Apache-2.0 # @@ -88,8 +88,8 @@ def check_eq(ids, choices): neq = { k: ids[k] for k in ids if any([k in c for c in choices]) and check(get(k, choices)) } return eq, neq - -def make_sequence(cid, choices, seq, params, cmds, pcid_key=None, param_drctv='directive-set-parameters'): +# TODO: Select param directive using capability reporting +def make_sequence(cid, choices, seq, params, cmds, pcid_key=None, param_drctv='directive-override-parameters'): eqcmds, neqcmds = check_eq(cmds, choices) eqparams, neqparams = check_eq(params, choices) if not pcid_key: -- GitLab From 2d1335e5413aee74e569d9ef1f820e2aab64fdfc Mon Sep 17 00:00:00 2001 From: Brendan Moran Date: Mon, 8 Aug 2022 22:11:53 +0100 Subject: [PATCH 2/2] Update copyright date --- suit_tool/manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suit_tool/manifest.py b/suit_tool/manifest.py index 7208d09..1fe16b9 100644 --- a/suit_tool/manifest.py +++ b/suit_tool/manifest.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # ---------------------------------------------------------------------------- -# Copyright 2019-2020 ARM Limited or its affiliates +# Copyright 2019-2022 ARM Limited or its affiliates # # SPDX-License-Identifier: Apache-2.0 # -- GitLab