mirror of
https://git.freebsd.org/ports.git
synced 2025-07-15 16:29:15 -04:00
o Don't use devinfo(8) in startup script, since it doesn't exist on 4.x. Use pciinfo(8) instead. o In zaptel driver don't require a specific major on the 5.x system that support auto major numbering; o Assign specific majors to wcfxs and wcfxo drivers on systems that don't support auto major numbering; o Ensure that nodes are created properly on non-devfs systems.
79 lines
1.6 KiB
Bash
79 lines
1.6 KiB
Bash
#!/bin/sh
|
|
|
|
PREFIX=%%PREFIX%%
|
|
LIBDIR=${PREFIX}/lib/zaptel
|
|
|
|
case "$1" in
|
|
start)
|
|
/sbin/kldload ${LIBDIR}/zaptel.ko || exit 1
|
|
/sbin/kldload ${LIBDIR}/wcfxo.ko || exit 1
|
|
/sbin/kldload ${LIBDIR}/wcfxs.ko || exit 1
|
|
if [ ! -d /dev/zap ]
|
|
then
|
|
mkdir -p /dev/zap || exit 1
|
|
fi
|
|
if [ ! -c /dev/zap/channel ]
|
|
then
|
|
/sbin/mknod /dev/zap/channel c 196 254 || exit 1
|
|
fi
|
|
if [ ! -c /dev/zap/ctl ]
|
|
then
|
|
/sbin/mknod /dev/zap/ctl c 196 0 || exit 1
|
|
fi
|
|
if [ ! -c /dev/zap/pseudo ]
|
|
then
|
|
/sbin/mknod /dev/zap/pseudo c 196 255 || exit 1
|
|
fi
|
|
if [ ! -c /dev/zap/timer ]
|
|
then
|
|
/sbin/mknod /dev/zap/timer c 196 253 || exit 1
|
|
fi
|
|
z=" zaptel"
|
|
if /usr/sbin/pciconf -l | /usr/bin/grep -q ^wcfxo
|
|
then
|
|
for i in 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
|
do
|
|
if /usr/sbin/pciconf -l | /usr/bin/grep -q ^wcfxo${i}
|
|
then
|
|
if [ ! -c /dev/wcfxo${i} ]
|
|
then
|
|
/sbin/mknod /dev/wcfxo${i} c 197 ${i} || exit 1
|
|
fi
|
|
fi
|
|
done
|
|
${PREFIX}/bin/ztcfg 2> /dev/null
|
|
else
|
|
if /usr/sbin/pciconf -l | /usr/bin/grep -q ^wcfxs
|
|
then
|
|
for i in 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
|
do
|
|
if /usr/sbin/pciconf -l | /usr/bin/grep -q ^wcfxs${i}
|
|
then
|
|
if [ ! -c /dev/wcfxs${i} ]
|
|
then
|
|
/sbin/mknod /dev/wcfxo${i} c 198 ${i} || exit 1
|
|
fi
|
|
fi
|
|
done
|
|
${PREFIX}/bin/ztcfg 2> /dev/null
|
|
else
|
|
z=""
|
|
fi
|
|
fi
|
|
echo -n ${z}
|
|
;;
|
|
|
|
stop)
|
|
/sbin/kldunload wcfxs.ko || exit 1
|
|
/sbin/kldunload wcfxo.ko || exit 1
|
|
/sbin/kldunload zaptel.ko || exit 1
|
|
echo -n " zaptel"
|
|
;;
|
|
|
|
*)
|
|
echo ""
|
|
echo "Usage: `basename $0` { start | stop }"
|
|
echo ""
|
|
exit 64
|
|
;;
|
|
esac
|