Skip to content

Commit c4f87c6

Browse files
philljjdanielinux
authored andcommitted
tools renode: fix ext_LMS and ext_XMSS sign arg check.
1 parent cfd65a8 commit c4f87c6

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

tools/test-renode.mk

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,11 @@ ifeq ($(SIGN),RSA4096)
9595
SIGN_ARGS+= --rsa4096
9696
endif
9797

98-
ifeq ($(SIGN),LMS)
99-
SIGN_ARGS+= --lms
98+
ifneq (,$(filter $(SIGN), LMS ext_LMS))
99+
SIGN_ARGS+= --lms
100100
endif
101-
102-
ifeq ($(SIGN),XMSS)
103-
SIGN_ARGS+= --xmss
101+
ifneq (,$(filter $(SIGN), XMSS ext_XMSS))
102+
SIGN_ARGS+= --xmss
104103
endif
105104

106105
ifeq ($(SIGN),ML_DSA)

0 commit comments

Comments
 (0)