#!/bin/sh
#
# ieee1394 1.0 1999/5/25 19:44:18 
#
# PCMCIA device configuration scheme, and "socket" is the socket number.
#

if [ -r ./shared ] ; then . ./shared ; else . /etc/pcmcia/shared ; fi

# Get device attributes
get_info $DEVICE

# Load site-specific settings
ADDRESS="$SCHEME,$SOCKET"
. $0.opts

case "$ACTION" in

'start')
    /sbin/modprobe video1394
    ;;

'check')
    ;;

'stop')
    /sbin/rmmod video1394
    ;;

'cksum')
    ;;
    
'suspend'|'resume')
    ;;

*)
    usage
    ;;

esac

exit 0
