testloadapp: Use blake2s from tkey-libs

This commit is contained in:
Mikael Ågren 2025-03-21 15:23:19 +01:00
parent 478212f72f
commit 543c5a8968
No known key found for this signature in database
GPG Key ID: E02DA3D397792C46

View File

@ -36,7 +36,7 @@ ASFLAGS = \
LDFLAGS = \
-T $(LIBDIR)/app.lds \
-L $(LIBDIR) -lcrt0 -lcommon -lmonocypher
-L $(LIBDIR) -lcrt0 -lcommon -lmonocypher -lblake2s
.PHONY: all
all: testloadapp.bin
@ -56,7 +56,6 @@ TESTLOADAPP_FMTFILES = \
TESTLOADAPP_OBJS = \
$(P)/main.o \
../testapp/syscall.o \
../tk1/blake2s/blake2s.o
testloadapp.elf: tkey-libs $(TESTLOADAPP_OBJS)
$(CC) $(CFLAGS) $(TESTLOADAPP_OBJS) $(LDFLAGS) -o $@