echo "Creating Device Nodes..."
num=0
while [ $num -lt 4 ]
do
    if [ ! -c /dev/dpti$num ]
    then
	mknod /dev/dpti$num c 151 $num
    fi
    num=`expr $num + 1`
done
