#!/bin/sh
# install modular device driver and special device file for DoubleTalk PC
insmod /lib/modules/`uname --release`/misc/dtlk.o
rm -f /dev/dtlk
mknod /dev/dtlk c `cat /proc/devices |awk '/dtlk/{print $1}'` 0
chmod 777 /dev/dtlk
