aboutsummaryrefslogtreecommitdiff
path: root/drivers/rng
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2020-01-19 19:28:12 +0100
committerTom Rini <trini@konsulko.com>2020-01-25 12:04:36 -0500
commit1611235b858abe08f9267f1fa95bc7553aa8e644 (patch)
tree65f8f65a01cdf65dfd5e340359230041b6f846b8 /drivers/rng
parent1b27753a963071165e12afa4a7516096881184be (diff)
downloadu-boot-1611235b858abe08f9267f1fa95bc7553aa8e644.zip
u-boot-1611235b858abe08f9267f1fa95bc7553aa8e644.tar.gz
u-boot-1611235b858abe08f9267f1fa95bc7553aa8e644.tar.bz2
lib: Kconfig dependencies for pseudo-random library
drivers/rng/sandbox_rng.c requires rand() to be defined but configuration option CONFIG_CONFIG_LIB_RAND selected in drivers/rng/Kconfig does not exist. test/lib/test_aes.c requires rand() to be defined. Fix the selection criteria for choice "Pseudo-random library support type". Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'drivers/rng')
-rw-r--r--drivers/rng/Kconfig1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/rng/Kconfig b/drivers/rng/Kconfig
index 35a3bd1..893b89d 100644
--- a/drivers/rng/Kconfig
+++ b/drivers/rng/Kconfig
@@ -9,7 +9,6 @@ config DM_RNG
config RNG_SANDBOX
bool "Sandbox random number generator"
depends on SANDBOX && DM_RNG
- select CONFIG_LIB_RAND
help
Enable random number generator for sandbox. This is an
emulation of a rng device.