#! /bin/sh

#
# Debugging udev on a G1 < 3.0 should bring up what the video for Linux
# loopback device depends on so that it is loaded automatically again.
#

case "$1" in
  start)
    modprobe v4l2loopback video_nr=90
    ;;
  stop)
    ;;
  *)
    printf "Usage: start | stop"
    ;;
esac

exit 0
