hotplug: run fxotune from span_config:

* Use fxotune -b/-e options to run on wanted channel range
This commit is contained in:
Oron Peled 2013-10-21 12:06:18 +02:00 committed by Tzafrir Cohen
parent c163caca00
commit 0afba16b2e
1 changed files with 6 additions and 1 deletions

View File

@ -42,7 +42,7 @@ DAHDICONFDIR='/etc/dahdi'
export DAHDICONFDIR
run_dahdi_cfg() {
echo "dahdi_cfg: span $spanno <$basechan-$endchan>"
echo "dahdi_cfg: span $spanno <$basechan-$endchan> ($DEVPATH)"
dahdi_cfg -c "$cfg_file" -S "$spanno" -C "$basechan-$endchan"
}
@ -70,6 +70,11 @@ configure_span() {
cfg_file='-'
DAHDI_CONF_FILE="$cfg_file" dahdi_genconf system | run_dahdi_cfg
fi
fxotune_cfg='/etc/fxotune.conf'
if [ -r "$fxotune_cfg" ]; then
echo "fxotune: span $spanno <$basechan-$endchan> ($DEVPATH)"
fxotune -s -b "$basechan" -e "$endchan"
fi
# Add to asterisk
asterisk -rx "dahdi create channels $basechan $endchan"