From 0c3af3413eb79734aff2f3832043156ac01f77ac Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sun, 6 Jul 1997 07:19:14 +0000 Subject: [PATCH] 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. --- etc/etc.amd64/rc.amd64 | 4 ++-- 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 d2cffde9859..dbc34b9d531 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 d2cffde9859..dbc34b9d531 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