6ddad3ced9
Fixes: http://autobuild.buildroot.net/results/e18/e1815b96997fb7def688e0aeb5d342fc64dbb64d/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
731 B
Plaintext
18 lines
731 B
Plaintext
config BR2_PACKAGE_RNG_TOOLS
|
|
bool "rng-tools"
|
|
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS || !(BR2_i386 || BR2_x86_64 || BR2_powerpc64le) # libgcrypt
|
|
# pthread_setaffinity_np
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
|
|
select BR2_PACKAGE_JITTERENTROPY_LIBRARY
|
|
# For rdrand & darn ligcrypt is required and it's not obvious to users
|
|
select BR2_PACKAGE_LIBGCRYPT if BR2_i386 || BR2_x86_64 || BR2_powerpc64le
|
|
select BR2_PACKAGE_LIBSYSFS
|
|
help
|
|
Daemon to use hardware random number generators.
|
|
|
|
http://sourceforge.net/projects/gkernel/
|
|
|
|
comment "rng-tools needs a toolchain w/ NPTL"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
|