[Buildroot] get initial entropy from the host

Peter Korsgaard peter at korsgaard.com
Wed May 30 06:14:11 UTC 2018


>>>>> "Enoch" == Enoch W <ixew at hotmail.com> writes:

 > Hi, 
 > Thanks for making Linux so easy to build [that is, when it works ;-) ]

You're welcome ;)

 > package/initscripts/init.d/S20urandom doesn't have readily available entropy on its first boot.
 > May I suggest initializing /dev/urandom from host generated
 > random-seed. I do it now via my board post-build.sh as follows.
 > IMHO it should be done as standard.

 > umask 077
 > dd if=/dev/urandom of=${TARGET_DIR}/etc/random-seed count=1

The problem is that if you have a lot of devices running the same build
they will have the same entropy. We used to have a hardcoded default
value for /etc/random-seed which we removed back in 2015:

commit ed0b44fdcecd2a703d2c1b8134375e19a2b7f867
Author: Baruch Siach <baruch at tkos.co.il>
Date:   Wed Jul 8 08:24:11 2015 +0300

    system/skeleton: remove random-seed

    Seeding the entropy pool with a known seed makes more harm than good. This is
    especially bad for when /etc is not on a persistent writable storage, so the
    entropy pool is seeded with the same value on every boot. Just drop it.

    Signed-off-by: Baruch Siach <baruch at tkos.co.il>
    Signed-off-by: Peter Korsgaard <peter at korsgaard.com>

-- 
Bye, Peter Korsgaard



More information about the buildroot mailing list