mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 20:02:55 +00:00
Phasing out the usage of this cmake macro from the drivers/entropy folder. Signed-off-by: Adithya Baglody <adithya.nagaraj.baglody@intel.com>
10 lines
600 B
CMake
10 lines
600 B
CMake
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c)
|
|
zephyr_library_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c)
|
|
zephyr_library_sources_ifdef(CONFIG_ENTROPY_MCUX_TRNG entropy_mcux_trng.c)
|
|
zephyr_library_sources_ifdef(CONFIG_ENTROPY_NRF5_RNG entropy_nrf5.c)
|
|
zephyr_library_sources_ifdef(CONFIG_ENTROPY_STM32_RNG entropy_stm32.c)
|
|
zephyr_library_sources_ifdef(CONFIG_FAKE_ENTROPY_NATIVE_POSIX fake_entropy_native_posix.c)
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE entropy_handlers.c)
|