Ernest L. Williams Jr. wrote:
On Fri, 2007-01-19 at 23:45 -0800, Per Bothner wrote:
Though last time I updated, it didn't work for me,
even though I had updated to a matching kernel module.
You also have to modify modprobe.conf manually:
install ipw3945 /sbin/modprobe --ignore-install ipw3945 ; sleep
0.5 ; /sbin/ipw3945d --quiet
remove ipw3945 /sbin/ipw3945d --kill ; /sbin/modprobe -r --ignore-remove
ipw3945
Actually, I got it working today. The hint to also
install yum-plugin-kmdl may have helped.
I don't need anything for ipw3945 in modprobe.conf.
Instead I created the attached init file.
(I can't start ipw3945d from rc.local, since that gets
run too late.)
--
--Per Bothner
per@xxxxxxxxxxx http://per.bothner.com/
# chkconfig: 2345 4 96
# description: Start ipw3945 daemon
# Source function library.
. /etc/init.d/functions
test -x /sbin/ipw3945d || exit 0
start()
{
echo -n $"Starting ipw3945d: "
/sbin/ipw3945d
echo
}
case "$1" in
start)
start
;;
stop)
;;
status)
status /sbin/ipw3945d
;;
*)
echo $"Usage: $0 {start|stop|restart|condrestart|status}"
exit 1
esac
exit $RETVAL
--
fedora-test-list mailing list
fedora-test-list@xxxxxxxxxx
To unsubscribe:
https://www.redhat.com/mailman/listinfo/fedora-test-list