2019-11-01 13:45:29 +01:00
|
|
|
# Entropy generator driver configuration options
|
2017-10-13 16:30:55 -07:00
|
|
|
|
|
|
|
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig ENTROPY_GENERATOR
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Entropy Drivers"
|
2017-10-13 16:30:55 -07:00
|
|
|
help
|
|
|
|
Include entropy drivers in system config.
|
|
|
|
|
|
|
|
if ENTROPY_GENERATOR
|
|
|
|
|
2021-07-26 11:27:10 +03:00
|
|
|
source "drivers/entropy/Kconfig.b91"
|
2019-04-25 18:07:31 -05:00
|
|
|
source "drivers/entropy/Kconfig.cc13xx_cc26xx"
|
2017-10-13 16:30:55 -07:00
|
|
|
source "drivers/entropy/Kconfig.mcux"
|
|
|
|
source "drivers/entropy/Kconfig.stm32"
|
|
|
|
source "drivers/entropy/Kconfig.esp32"
|
2017-09-19 05:01:27 -03:00
|
|
|
source "drivers/entropy/Kconfig.nrf5"
|
2018-11-04 00:13:01 +01:00
|
|
|
source "drivers/entropy/Kconfig.sam"
|
2018-02-11 10:34:33 +01:00
|
|
|
source "drivers/entropy/Kconfig.native_posix"
|
2019-04-08 18:12:40 +03:00
|
|
|
source "drivers/entropy/Kconfig.rv32m1"
|
2019-07-19 15:22:22 +02:00
|
|
|
source "drivers/entropy/Kconfig.litex"
|
2020-02-21 15:22:05 +01:00
|
|
|
source "drivers/entropy/Kconfig.gecko"
|
2017-10-13 16:30:55 -07:00
|
|
|
|
|
|
|
config ENTROPY_HAS_DRIVER
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
This is an option to be enabled by individual entropy driver
|
|
|
|
to signal that there is a true entropy driver.
|
|
|
|
|
|
|
|
endif
|