- From: Bernd Porr <Bernd.Porr_at_cn.stir.ac.uk>
- Date: Wed, 02 Jul 2003 01:57:07 +0100
Hi! I've tested it with SuSE and with Debian. With both there were no problems. I liked how SuSe instantly integrated the comedi drivers into the bootup process. Actually SuSE seems to use simply brute force: all usb kernel modules are loaded and then the error msgs are analysed. But it worked pretty fine. With Debian there are also no problem but you have to install your install script in /etc/init.d to load the drivers. /Bernd Tim Holt wrote: > I'm about to wipe the old Win98 OS on a notebook and install Linux for > use with Comedi. What do you the members of this list recommend as > the best Linux distribution to use? > Thanks! > > Tim Holt > Oregon State University, NACSE > > > _______________________________________________ > comedi mailing list > comedi_at_comedi.org > https://cvs.comedi.org/cgi-bin/mailman/listinfo/comedi -- http://www.cn.stir.ac.uk/~bp1/ mailto:bp1_at_cn.stir.ac.uk
#!/bin/sh
#
# start/stop usbdaqdt
if ! [ -x /usr/sbin/comedi_config ]; then
exit 0
fi
case "$1" in
start)
echo -n "Starting usbdaqdt:"
modprobe usbdaqdt
/usr/sbin/comedi_config --write-buffer 10 --read-buffer 10 -i /home/bp1/c/usb/firmware/usbdaqdt_firmware.bin /dev/comedi0 usbdaqdt
echo "."
;;
stop)
echo -n "Stopping usbdaqdt:"
rmmod usbdaqdt
echo "."
;;
reload)
echo -n "Reloading:"
$0 stop
$0 start
echo "."
;;
force-reload)
$0 reload
;;
restart)
$0 reload
echo "."
;;
*)
echo "Usage: /etc/init.d/usbdaqdt {start|stop|reload|restart}"
exit 1
;;
esac
exit 0
Received on 2003-07-01Z23:57:07