added a /etc/modprobe.d/mISDN file which uses the /etc/init.d/misdn-init script to load the mISDN modules. This makes it easier to load mISDN in hotplug based distros, which nearly all of them are now

This commit is contained in:
Chrisian Richter 2006-05-08 15:43:57 +00:00
parent 169c4dbded
commit 150992561e
3 changed files with 22 additions and 21 deletions

View File

@ -52,6 +52,8 @@ install: all
cp $(MISDNDIR)/include/linux/*.h $(INSTALL_PREFIX)/usr/include/linux/
mkdir -p $(INSTALL_PREFIX)/etc/init.d/
install -m755 misdn-init $(INSTALL_PREFIX)/etc/init.d/
mkdir -p $(INSTALL_PREFIX)/etc/modprobe.d/mISDN
cp mISDN.modprobe.d $(INSTALL_PREFIX)/etc/modprobe.d/mISDN
$(DEPMOD)
test_old_misdn:

5
mISDN.modprobe.d Normal file
View File

@ -0,0 +1,5 @@
install hfcsusb /etc/init.d/misdn-init start hfcsusb
remove hfcsusb if ps ax | grep -v grep | grep asterisk > /dev/null ; then asterisk -rx "stop now" ; fi && /etc/init.d/misdn-init stop

View File

@ -66,13 +66,8 @@ ignore_pcm_frameclock=13
dsp_options=0
function remove_preloaded_modules {
tmp=$(lsmod)
cards="hfcmulti hfcpci avmfritz w6692 hfcsusb"
for i in $cards ; do
echo $tmp | grep $i >/dev/null && (echo "$i already loaded, removing it"; modprobe -r $i)
done
function check_asterisk {
if ps ax | grep -v grep | grep asterisk > /dev/null ; then asterisk -rx "stop now" ; fi
}
function load_card_modules {
@ -226,7 +221,7 @@ function load_card_modules {
hfcmulti_type="$(echo ${hfcmulti_type} | sed -e 's/^\(.*\),$/\1/')"
hfcmulti_prot="$(echo ${hfcmulti_prot} | sed -e 's/^\(.*\),$/\1/')"
hfcmulti_layer="$(echo ${hfcmulti_layer} | sed -e 's/^\(.*\),$/\1/')"
hfcmulti_cmd="modprobe hfcmulti ${hfcmulti_type} ${hfcmulti_prot} ${hfcmulti_layer}"
hfcmulti_cmd="modprobe --ignore-install hfcmulti ${hfcmulti_type} ${hfcmulti_prot} ${hfcmulti_layer}"
if [ ! -z ${poll} ]; then
hfcmulti_cmd="${hfcmulti_cmd} poll=${poll}"
fi
@ -249,7 +244,7 @@ function load_card_modules {
fi
else
# MODPROBE COMMAND FOR _NON_ hfcmulti CARD
other_cmd="modprobe ${other_card[${card_index}]}"
other_cmd="modprobe --ignore-install ${other_card[${card_index}]}"
if [ ! -z ${protocol[${port_index}]} ]; then
other_prot="protocol=$(echo "obase=16;\"0x\";${protocol[${port_index}]}" | bc),"
else
@ -289,7 +284,7 @@ function load_card_modules {
echo "${other_cmd}"
eval ${other_cmd}
else
if [ "$1" = "${other_card[${card_index}]}" ] ; then
if [ "$1" = "${other_card[${prev}]}" ] ; then
echo ${other_cmd}
eval ${other_cmd}
fi
@ -536,19 +531,16 @@ function check_cfg_file {
case "$1" in
start|--start)
remove_preloaded_modules
#remove_preloaded_modules
check_cfg_file
$MODPROBE capi
$MODPROBE mISDN_core debug=0
$MODPROBE mISDN_l1 debug=0
$MODPROBE mISDN_l2 debug=0
$MODPROBE l3udss1 debug=0
$MODPROBE mISDN_dsp debug=0x0 options=$dsp_options
$MODPROBE mISDN_capi
modprobe capi
modprobe mISDN_core debug=0
modprobe mISDN_l1 debug=0
modprobe mISDN_l2 debug=0
modprobe l3udss1 debug=0
modprobe mISDN_dsp debug=0x0 options=$dsp_options
modprobe mISDN_capi
load_card_modules $2
@ -567,6 +559,8 @@ case "$1" in
check_cfg_file
check_asterisk
unload_card_modules
for mod in $(lsmod | sed -ne '/Module/!{s/\([^ ]*\).*/\1/;p}');