#!/bin/sh
# 	@(#)o1k-config.sh	1.3 96/12/02 
#
# Copyright (c) 1996 by MultiMedia Access Corp.
#
# /etc/rc2.d/S94o1k-config - Configure for Osprey1100 A/V Codec SBus Card

PATH=/usr/bin:/bin:/usr/sbin

devpath=/devices


# Do this for each card
for inst in `/bin/find $devpath -name '*o1k*' -print`
do
    case $inst in

        */*o1kctl[0-9] | */*o1kctl[0-9][0-9])
            /bin/chmod 644 $inst
            ;;
    esac
done

exit 0
