From c656d89c36d8cbfc4b1efa7ccbfe7901bff2da0b Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 2 Sep 2019 22:36:43 +0300 Subject: [PATCH] rc.boot: Add message about entropy generation. --- lib/init/rc.boot | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/init/rc.boot b/lib/init/rc.boot index 0d58114..4bdbb00 100755 --- a/lib/init/rc.boot +++ b/lib/init/rc.boot @@ -130,6 +130,9 @@ main() { if [ -f /var/random.seed ]; then cat /var/random.seed > /dev/urandom else + log "This may hang." + log "Mash the keyboard to generate entropy..." + dd count=1 bs=512 if=/dev/random of=/var/random.seed fi }