Re: [PATCH 1/2] hwrng: dev-random: always use /dev/urandom

2019-10-23 Thread Sascha Hauer
On Mon, Oct 21, 2019 at 02:20:46PM +0200, Ahmad Fatoum wrote: > /dev/random can block long after boot time. It seems there's a consensus > that /dev/urandom is safe to use except for very early boot, which isn't > when barebox sandbox is usually run. To make the HWRNG more useful, > always use

[PATCH 1/2] hwrng: dev-random: always use /dev/urandom

2019-10-21 Thread Ahmad Fatoum
/dev/random can block long after boot time. It seems there's a consensus that /dev/urandom is safe to use except for very early boot, which isn't when barebox sandbox is usually run. To make the HWRNG more useful, always use /dev/urandom. Signed-off-by: Ahmad Fatoum ---