#!/bin/sh
#
# setup IVTV cards
#
# runlevels: geexbox, debug, install

if grep -q -e '4444:0016' -e '4444:0803'  /tmp/pci; then
  echo "### Setting up IVTV card ###"

  # Drivers for IVTV cards
  modprobe ivtv 2>&1 >/dev/null

  echo '' > /var/use_pvr
fi

exit 0
