diff options
author | peter <peter@FreeBSD.org> | 1997-07-06 07:19:14 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-07-06 07:19:14 +0000 |
commit | 60f787e21f64c5425b302b242c9a638f55ebb6ad (patch) | |
tree | 928b9a5d15b6cc0eaee0060032bdb612778cb002 /etc | |
parent | 08b8316452dd334b0d2b881654a44062f74383c0 (diff) | |
download | FreeBSD-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')
-rw-r--r-- | etc/etc.amd64/rc.amd64 | 4 | ||||
-rw-r--r-- | etc/etc.i386/rc.i386 | 4 |
2 files changed, 4 insertions, 4 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 diff --git a/etc/etc.i386/rc.i386 b/etc/etc.i386/rc.i386 index d2cffde..dbc34b9 100644 --- a/etc/etc.i386/rc.i386 +++ b/etc/etc.i386/rc.i386 @@ -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 |