Greg Woods wrote:

Could you post your init script please?
I could, but not without a few disclaimers. ... Not all the
commands in the script may really be needed. ...

#! /bin/bash
#
# chkconfig: 2345 9 85
# description: start and stop IVTV services
#

case "$1" in
  start)
     modprobe ivtv
     modprobe tveeprom
     modprobe tuner
     modprobe msp3400
As you mentioned, not all the commands are necessary. The last three modprobes (for tveeprom, tuner, and msp3400) are not needed in ivtv 0.2+.

     /usr/local/bin/ivtvctl -d /dev/video1 -q 1
     ;;
     *)
     ;;
esac
exit 0

_______________________________________________
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

Reply via email to