1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-28 22:49:47 +01:00

sys/puf_sram: move dependency resolution in its own Makefile.dep

This commit is contained in:
Alexandre Abadie 2023-04-21 10:05:47 +02:00
parent 50ed85a2fa
commit db19f6f546
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 3 additions and 6 deletions

View File

@ -405,12 +405,6 @@ ifneq (,$(filter entropy_source_%,$(USEMODULE)))
USEMODULE += entropy_source
endif
ifneq (,$(filter puf_sram,$(USEMODULE)))
USEMODULE += hashes
USEMODULE += random
FEATURES_REQUIRED += puf_sram
endif
ifneq (,$(filter random,$(USEMODULE)))
DEFAULT_MODULE += auto_init_random
USEMODULE += prng

View File

@ -0,0 +1,3 @@
USEMODULE += hashes
USEMODULE += random
FEATURES_REQUIRED += puf_sram