mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-18 11:51:56 +00:00
Selecting a choice symbol is always a no-op, and the latest version of Kconfiglib prints a warning. This commit removes all selects of choice symbols, which might make the Kconfig files a bit clearer and gets rid of the warnings. This is just a dumb removal. I did not try to guess the intent of each select. Fixes #6849 Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
24 lines
640 B
Plaintext
24 lines
640 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 ENTROPY_GENERATOR && HAS_MCUX_RNGA
|
|
default n
|
|
select ENTROPY_HAS_DRIVER
|
|
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 ENTROPY_GENERATOR && HAS_MCUX_TRNG
|
|
default n
|
|
select ENTROPY_HAS_DRIVER
|
|
help
|
|
This option enables the true random number generator (TRNG)
|
|
driver based on the MCUX TRNG driver.
|