#!/bin/sh
module="resproc"
device="pci"
group="wheel"
#mode="664"
mode="666"

# invoke insmod with all arguments we got
/sbin/insmod -f $module $* || exit 1
/sbin/insmod -f tool || 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-1]
mknod /dev/${device}0 c $major 0
mknod /dev/${device}1 c $major 1
ln -sf ${device}0 /dev/${device}
chgrp $group /dev/${device}[0-1] 
chmod $mode  /dev/${device}[0-1]


