From c4f87c6ad89e7793e06fbd0e753e6b534b4305a3 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 d18d7ef1..bec82969 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)