2019-11-01 20:45:29 +08:00
|
|
|
# Entropy generator driver configuration options
|
2017-10-14 07:30:55 +08:00
|
|
|
|
|
|
|
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig ENTROPY_GENERATOR
|
2018-08-14 22:19:20 +08:00
|
|
|
bool "Entropy Drivers"
|
2017-10-14 07:30:55 +08:00
|
|
|
help
|
|
|
|
Include entropy drivers in system config.
|
|
|
|
|
|
|
|
if ENTROPY_GENERATOR
|
|
|
|
|
2019-04-26 07:07:31 +08:00
|
|
|
source "drivers/entropy/Kconfig.cc13xx_cc26xx"
|
2017-10-14 07:30:55 +08:00
|
|
|
source "drivers/entropy/Kconfig.mcux"
|
|
|
|
source "drivers/entropy/Kconfig.stm32"
|
|
|
|
source "drivers/entropy/Kconfig.esp32"
|
2017-09-19 16:01:27 +08:00
|
|
|
source "drivers/entropy/Kconfig.nrf5"
|
2018-11-04 07:13:01 +08:00
|
|
|
source "drivers/entropy/Kconfig.sam"
|
2018-02-11 17:34:33 +08:00
|
|
|
source "drivers/entropy/Kconfig.native_posix"
|
2019-04-08 23:12:40 +08:00
|
|
|
source "drivers/entropy/Kconfig.rv32m1"
|
2019-07-19 21:22:22 +08:00
|
|
|
source "drivers/entropy/Kconfig.litex"
|
2020-02-21 22:22:05 +08:00
|
|
|
source "drivers/entropy/Kconfig.gecko"
|
2017-10-14 07:30:55 +08: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
|