examples/test_copcican_comedi/insert.sh
author Christian Taedcke <hacking@taedcke.com>
Tue, 08 Nov 2011 08:27:29 +0000
changeset 683 a3ff0e3e9829
parent 629 b9274b595650
permissions -rw-r--r--
Win32 IXXAT driver:
FIXED: - A return value of 0 from VCI_ResetCan() and VCI_StartCan() indicates an error, too.
CHANGED: - The return values of VCI_ResetCan() and VCI_StartCan() are logged in case of an error.
#!/bin/sh

module="test_copcican_comedi"
device="test_copcican_comedi"
mode="664"

# insert neccessary modules
/sbin/insmod ../../drivers/can_copcican_comedi/can_copcican_comedi.ko
/sbin/insmod ../../src/canfestival.ko

# insert module with all arguments we got
# and use a pathname, as newer modutils don't look in . by default
/sbin/insmod ./$module.ko $* || exit 1

# stale nodes and device files are created by COMEDI

rmmod $module
rmmod canfestival
rmmod can_copcican_comedi