summaryrefslogtreecommitdiffstats
path: root/drivers/hw_random/Kconfig
blob: c57928204d3001dc382206c59a0f583e3169438c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
menuconfig HWRNG
	bool "HWRNG Support"
	help
	  Support for HWRNG(Hardware Random Number Generator) devices.

	  If unsure, say no.

if HWRNG

config HWRNG_MXC_RNGC
	tristate "Freescale i.MX RNGC Random Number Generator"
	depends on ARCH_IMX25 || ARCH_IMX35 || ARCH_IMX53
	help
	  This driver provides kernel-side support for the Random Number
	  Generator hardware found on some Freescale i.MX processors.

config HWRNG_DEV_RANDOM
	tristate "Linux /dev/random and /dev/urandom RNG"
	depends on SANDBOX
	default y
	help
	  This driver allows use of the host provided /dev/random
	  and /dev/urandom as barebox HWRNGs.

endif