mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
6c3e7c5db7
Module `esp_idf_nvs_flash` uses C++ code. Since `esp_idf_nvs_flash` module is always enabled on ESP8266, the permanent dependency on `cpp` is correct. But on ESP32, the `esp_idf_nvs_flash` module is only enabled if `esp_wifi_any` is used. Only in that case the compilation should depend on module `cpp`.
9 lines
303 B
Plaintext
9 lines
303 B
Plaintext
CONFIG_MODULE_RANDOM=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
|
|
CONFIG_MODULE_PERIPH_HWRNG=y
|
|
CONFIG_MODULE_PERIPH_UART=y
|
|
CONFIG_MODULE_NEWLIB=y
|