mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-12 21:45:54 +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>
17 lines
494 B
Plaintext
17 lines
494 B
Plaintext
# Kconfig.esp32 - esp32 entropy generator driver configuration
|
|
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config ENTROPY_ESP32_RNG
|
|
bool "ESP32 entropy number generator driver"
|
|
depends on SOC_ESP32
|
|
select ENTROPY_HAS_DRIVER
|
|
help
|
|
This option enables the entropy number generator for ESP32 SoCs.
|
|
|
|
With Wi-Fi and Bluetooth disabled, this will produce pseudo-entropy
|
|
numbers: noise from these radios are used to feed entropy in this
|
|
generator.
|