mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 19:55:55 +00:00
Also remove some duplicated dependencies for the related symbol ENTROPY_NRF5_RNG. The redundant ENTROPY_GENERATOR deps. are in files sourced within a if ENTROPY_GENERATOR ... endif block in drivers/entropy/Kconfig. The redundant ENTROPY_NRF5_RNG deps. are due to redundant 'depends on' within an 'if' in the same file. Tip: Jump to symbols with '/' in the menuconfig and press '?' to check their dependencies. If there are duplicated dependencies, the 'included via ...' path can be handy to discover where they are added. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
24 lines
624 B
Plaintext
24 lines
624 B
Plaintext
# Kconfig.mcux - mcux entropy generator driver configuration
|
|
#
|
|
# Copyright (c) 2016 ARM Ltd.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig ENTROPY_MCUX_RNGA
|
|
bool "MCUX RNGA driver"
|
|
depends on HAS_MCUX_RNGA
|
|
select ENTROPY_HAS_DRIVER
|
|
select HAS_DTS_ENTROPY
|
|
help
|
|
This option enables the random number generator accelerator (RNGA)
|
|
driver based on the MCUX RNGA driver.
|
|
|
|
menuconfig ENTROPY_MCUX_TRNG
|
|
bool "MCUX TRNG driver"
|
|
depends on HAS_MCUX_TRNG
|
|
select ENTROPY_HAS_DRIVER
|
|
select HAS_DTS_ENTROPY
|
|
help
|
|
This option enables the true random number generator (TRNG)
|
|
driver based on the MCUX TRNG driver.
|