summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-12-22 18:13:16 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-12-22 18:13:16 +0000
commit412c51294c7662f898b2b367bb671d9c4a49fcd0 (patch)
treee9bd389a52c403cb0e203fd4e82957493cc18bfa /distrib
parent2b0560695a4bc38017d76389cf8cedfc76a18b77 (diff)
Consistantly use /dev/arandom for feeding entropy to the kernel.
ok kjell otto miod
Diffstat (limited to 'distrib')
-rw-r--r--distrib/miniroot/install.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh
index 2a9eb2d1244..a6292da52a3 100644
--- a/distrib/miniroot/install.sh
+++ b/distrib/miniroot/install.sh
@@ -1,5 +1,5 @@
#!/bin/ksh
-# $OpenBSD: install.sh,v 1.210 2010/10/30 22:48:03 deraadt Exp $
+# $OpenBSD: install.sh,v 1.211 2010/12/22 18:13:15 deraadt Exp $
# $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $
#
# Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback
@@ -272,11 +272,11 @@ for _f in fstab hostname* kbdtype my* ttys *.conf *.tail; do
done )
# Feed the random pool some junk before we read from it
-dmesg >/dev/urandom
-cat $SERVERLISTALL >/dev/urandom 2>/dev/null
+dmesg >/dev/arandom
+cat $SERVERLISTALL >/dev/arandom 2>/dev/null
echo -n "done.\nGenerating initial host.random file..."
-/mnt/bin/dd if=/mnt/dev/urandom of=/mnt/var/db/host.random \
+/mnt/bin/dd if=/dev/arandom of=/mnt/var/db/host.random \
bs=1024 count=64 >/dev/null 2>&1
chmod 600 /mnt/var/db/host.random >/dev/null 2>&1
echo "done."