We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
FLASH_OTP_KEYSTORE=0
1 parent 4e6e81c commit 0d41724Copy full SHA for 0d41724
1 file changed
test-app/Makefile
@@ -168,7 +168,11 @@ ifeq ($(TARGET),stm32h5)
168
LDFLAGS+=-Wl,-gc-sections -Wl,-Map=image.map
169
CFLAGS+=-I..
170
APP_OBJS+=../hal/uart/uart_drv_$(UART_TARGET).o
171
- APP_OBJS+=../src/flash_otp_keystore.o
+ ifeq ($(FLASH_OTP_KEYSTORE),1)
172
+ APP_OBJS+=../src/flash_otp_keystore.o
173
+ else
174
+ APP_OBJS+=../src/keystore.o
175
+ endif
176
APP_OBJS+=../lib/wolfssl/wolfcrypt/benchmark/benchmark.o
177
APP_OBJS+=../lib/wolfssl/wolfcrypt/test/test.o
178
endif
0 commit comments