mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-16 14:03:00 +02:00
Drop mISDN userspace tools
This is unsupported for quite a while and nobody should be using this. Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -1,68 +0,0 @@
|
||||
#!/bin/sh
|
||||
########################################################################
|
||||
# Begin $rc_base/init.d/mISDN
|
||||
#
|
||||
# Description : Start mISDN v2
|
||||
#
|
||||
# Authors : Arne Fitzenreiter - arne_f@ipfire.org
|
||||
#
|
||||
# Version : 01.00
|
||||
#
|
||||
# Notes :
|
||||
#
|
||||
########################################################################
|
||||
|
||||
. /etc/sysconfig/rc
|
||||
. ${rc_functions}
|
||||
|
||||
case "${1}" in
|
||||
start)
|
||||
|
||||
boot_mesg "Starting mISDNv2 ... "
|
||||
|
||||
# load mISDN modules
|
||||
for module in mISDN_core hfcpci hfcsusb hfcmulti avmfritz speedfax mISDNinfineon xhfc; do
|
||||
modprobe $module > /dev/null 2>&1;
|
||||
done
|
||||
|
||||
modprobe mISDN_dsp
|
||||
modprobe mISDN_dsp_oslec
|
||||
if [ ${?} = 0 ]; then
|
||||
echo_ok;
|
||||
else
|
||||
echo_failure;
|
||||
fi
|
||||
exit 0;
|
||||
;;
|
||||
|
||||
stop)
|
||||
|
||||
boot_mesg "Stopping mISDNv2 ... "
|
||||
|
||||
# unload mISDN hardware modules
|
||||
for module in mISDN_dsp_oslec mISDN_dsp hfcpci hfcsusb hfcmulti avmfritz speedfax mISDNinfineon xhfc mISDNipac mISDNisar; do
|
||||
rmmod $module > /dev/null 2>&1;
|
||||
done
|
||||
|
||||
rmmod mISDN_core > /dev/null 2>&1
|
||||
echo_ok;
|
||||
exit 0;
|
||||
;;
|
||||
|
||||
config)
|
||||
boot_mesg "mISDNv2 - config not needed!"
|
||||
exit 0;
|
||||
;;
|
||||
|
||||
scan)
|
||||
boot_mesg "mISDNv2 - scan not supported!"
|
||||
exit 0;
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Usage: ${0} {start}{stop}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# End $rc_base/init.d/mISDN
|
||||
Reference in New Issue
Block a user