Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion agent.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ extern struct ScheduledJob* currentJob; /* Defined in schedule.c */
/* 2.15.1.0 = Updated for v12 API modifications */
/* 2.15.2.0 = Updated DTO for Warning to allow agent rotation */
/* 2.16.0.0 = Updated TPM for default passkey */
#define AGENT_VERSION 0x0002001000000000
/* 2.16.0.1 = Updated Makefile for OpenSSL v3.x */
#define AGENT_VERSION 0x0002001000000001

#endif /* AGENT_H_ */
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ OPENLIBS = -lcrypto -lcurl

# TPM specific variables for the tpm2tss stack
# The following TSSLIBS definition is for the Raspberry Pi
RPI_TSSLIBS = -L/usr/lib/arm-linux-gnueabihf/engines-1.1/ -ltpm2tss
RPI_TSSLIBS = -L/usr/lib/arm-linux-gnueabihf/engines-1.1/ -L/usr/lib/arm-linux-gnueabihf/engines-3/ -ltpm2tss
# The following TSSLIBS definition is for a linux machine
TSSLIBS = -ltpm2tss -L/usr/lib/x86_64-linux-gnu/engines-1.1/
TSSLIBS = -ltpm2tss -L/usr/lib/x86_64-linux-gnu/engines-1.1/ -L/usr/lib/arm-linux-gnueabihf/engines-3/

vpath %.c ./ ./lib ./wolfssl_wrapper
SRC := $(wildcard *.c) \
Expand Down