1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 00:29:46 +01:00

sys/fido2: remove unnecessary module import from Makefile.dep

This commit is contained in:
Ollrogge 2022-01-25 09:57:36 +01:00
parent 4b24012cbc
commit 1dde2cd3bc
4 changed files with 12 additions and 1 deletions

View File

@ -19,6 +19,7 @@ rsource "elk/Kconfig"
rsource "emlearn/Kconfig"
rsource "esp8266_sdk/Kconfig"
rsource "fff/Kconfig"
rsource "fido2_tests/Kconfig"
rsource "gecko_sdk/Kconfig"
rsource "gemmlowp/Kconfig"
rsource "hacl/Kconfig"

4
pkg/fido2_tests/Kconfig Normal file
View File

@ -0,0 +1,4 @@
config PACKAGE_FIDO2_TESTS
bool "FIDO2 tests"
help
Test suite for FIDO2, U2F, and other security key functions.

View File

@ -840,7 +840,6 @@ ifneq (,$(filter fido2_ctap,$(USEMODULE)))
USEMODULE += ztimer_msec
USEMODULE += event
USEMODULE += event_timeout
USEMODULE += prng_sha256prng
USEMODULE += cipher_modes
USEMODULE += crypto_aes_256
USEMODULE += hashes

View File

@ -4,3 +4,10 @@ CONFIG_MODULE_FIDO2=y
CONFIG_MODULE_FIDO2_CTAP=y
CONFIG_MODULE_FIDO2_CTAP_TRANSPORT=y
CONFIG_MODULE_FIDO2_CTAP_TRANSPORT_HID=y
CONFIG_PACKAGE_FIDO2_TESTS=y
# Should be autoselecting the MODULE_PRNG_HWRNG if possible
# Since the makefile cannot we have to override until end of migration
# Remove when TEST_KCONFIG is complete
CONFIG_MODULE_PRNG_MUSL_LCG=y