From 1c73db9e44ef63a3fff334be5ba595381bfc549b Mon Sep 17 00:00:00 2001 From: jordan Date: Wed, 30 Oct 2024 08:50:54 -0500 Subject: [PATCH] tools renode: fix ext_LMS and ext_XMSS sign arg check. --- tools/test-renode.mk | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tools/test-renode.mk b/tools/test-renode.mk index d18d7ef17..bec829698 100644 --- a/tools/test-renode.mk +++ b/tools/test-renode.mk @@ -95,12 +95,11 @@ ifeq ($(SIGN),RSA4096) SIGN_ARGS+= --rsa4096 endif -ifeq ($(SIGN),LMS) - SIGN_ARGS+= --lms +ifneq (,$(filter $(SIGN), LMS ext_LMS)) + SIGN_ARGS+= --lms endif - -ifeq ($(SIGN),XMSS) - SIGN_ARGS+= --xmss +ifneq (,$(filter $(SIGN), XMSS ext_XMSS)) + SIGN_ARGS+= --xmss endif ifeq ($(SIGN),ML_DSA)