#!/bin/sh
module="dpci16in16out"
device="dpci16in16out"
group="root"
mode="664"
major="165"

# invoke insmod with all arguments we got
/sbin/insmod -f $module.o $* || exit 1

#major=`cat /proc/devices | awk "\\$2==\"$module\" {print \\$1}"`

# Remove stale nodes and replace them, then give gid and perms
# Usually the script is shorter, it's scull that has several devices in it.

rm -f /dev/${device}[0-3]
mknod /dev/${device}0 c $major 0
mknod /dev/${device}1 c $major 1
mknod /dev/${device}2 c $major 2
mknod /dev/${device}3 c $major 3
chgrp $group /dev/${device}[0-3] 
chmod $mode  /dev/${device}[0-3]

