summaryrefslogtreecommitdiffstats
path: root/etc/etc.amd64/rc.amd64
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-07-06 07:19:14 +0000
committerpeter <peter@FreeBSD.org>1997-07-06 07:19:14 +0000
commit60f787e21f64c5425b302b242c9a638f55ebb6ad (patch)
tree928b9a5d15b6cc0eaee0060032bdb612778cb002 /etc/etc.amd64/rc.amd64
parent08b8316452dd334b0d2b881654a44062f74383c0 (diff)
downloadFreeBSD-src-60f787e21f64c5425b302b242c9a638f55ebb6ad.zip
FreeBSD-src-60f787e21f64c5425b302b242c9a638f55ebb6ad.tar.gz
fix rndcontrol invocation.. rndcontrol has the irq after a -s switch, not
just the next argument. We really need to be able to tag drivers with their randomness "suitability" so that this can be more automatic. It would be nice if all suitable drivers registered their irq automatically, but still allowed them to be turned on/off etc.
Diffstat (limited to 'etc/etc.amd64/rc.amd64')
-rw-r--r--etc/etc.amd64/rc.amd644
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.amd64/rc.amd64 b/etc/etc.amd64/rc.amd64
index d2cffde..dbc34b9 100644
--- a/etc/etc.amd64/rc.amd64
+++ b/etc/etc.amd64/rc.amd64
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.i386,v 1.27 1997/05/27 07:17:12 jkh Exp $
+# $Id: rc.i386,v 1.28 1997/06/02 06:43:52 markm Exp $
# Do i386 specific processing
#
@@ -109,7 +109,7 @@ echo '.'
if [ "X${rand_irqs}" != X"NO" ] ; then
echo -n 'entropy IRQs:'
for irq in ${rand_irqs}; do
- echo -n " ${irq}" && rndcontrol -q ${irq}
+ echo -n " ${irq}" && rndcontrol -q -s ${irq}
done
echo '.'
fi
OpenPOWER on IntegriCloud