fw: break out trng and xorwow to rng.[ch]

This commit is contained in:
Daniel Jobson 2024-09-04 13:43:57 +02:00
parent f1a72191f6
commit 7279526e92
No known key found for this signature in database
GPG key ID: 3707A9DBF4BB8F1A
4 changed files with 53 additions and 29 deletions

View file

@ -116,7 +116,8 @@ FIRMWARE_DEPS = \
$(P)/fw/tk1/partition_table.h \
$(P)/fw/tk1/preload_app.h \
$(P)/fw/tk1/auth_app.h \
$(P)/fw/tk1/htif.h
$(P)/fw/tk1/htif.h \
$(P)/fw/tk1/rng.h
FIRMWARE_OBJS = \
$(P)/fw/tk1/main.o \
@ -131,7 +132,8 @@ FIRMWARE_OBJS = \
$(P)/fw/tk1/partition_table.o \
$(P)/fw/tk1/preload_app.o \
$(P)/fw/tk1/auth_app.o \
$(P)/fw/tk1/htif.o
$(P)/fw/tk1/htif.o \
$(P)/fw/tk1/rng.o
FIRMWARE_SOURCES = \
$(P)/fw/tk1/main.c \
@ -145,7 +147,8 @@ FIRMWARE_SOURCES = \
$(P)/fw/tk1/partition_table.c \
$(P)/fw/tk1/preload_app.c \
$(P)/fw/tk1/auth_app.c \
$(P)/fw/tk1/htif.c
$(P)/fw/tk1/htif.c \
$(P)/fw/tk1/rng.c
TESTFW_OBJS = \
$(P)/fw/testfw/main.o \