diff options
author | markm <markm@FreeBSD.org> | 1997-06-02 06:43:52 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1997-06-02 06:43:52 +0000 |
commit | 7ae9e3190ab33787186a0cdb11914f80b6f7dce3 (patch) | |
tree | bd39643c394ee3b0df7772d8f60ef30d113d5e55 /etc/etc.amd64/rc.amd64 | |
parent | e43a7ca060dd649f4011df872de0ab4ccdaeb886 (diff) | |
download | FreeBSD-src-7ae9e3190ab33787186a0cdb11914f80b6f7dce3.zip FreeBSD-src-7ae9e3190ab33787186a0cdb11914f80b6f7dce3.tar.gz |
Correct the way IRQs are passed to rndcontrol. If there are more than
one IRQ being used, the -s options must be specified for each of them.
In this case rc.conf would only allow 1, as the -s was coded into
rc.i386.
Diffstat (limited to 'etc/etc.amd64/rc.amd64')
-rw-r--r-- | etc/etc.amd64/rc.amd64 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.amd64/rc.amd64 b/etc/etc.amd64/rc.amd64 index 1f6ef5e..d2cffde 100644 --- a/etc/etc.amd64/rc.amd64 +++ b/etc/etc.amd64/rc.amd64 @@ -1,6 +1,6 @@ #!/bin/sh - # -# $Id: rc.i386,v 1.26 1997/05/19 07:46:51 jkh Exp $ +# $Id: rc.i386,v 1.27 1997/05/27 07:17:12 jkh 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 -s ${irq} + echo -n " ${irq}" && rndcontrol -q ${irq} done echo '.' fi |