mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:02:48 +02:00
9a5ae46bbb
* rename voice package * sync with lantiqs release * make it work on lantiq kernel git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25275 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
803 B
Bash
26 lines
803 B
Bash
#!/bin/sh /etc/rc.common
|
|
#
|
|
# Activate Voice CPE TAPI subsystem LL driver for VMMC
|
|
|
|
START=31
|
|
|
|
start() {
|
|
# TODO: clean up this mess
|
|
[ `cat /proc/cpuinfo | grep system | cut -f 3 -d ' '` = "Twinpass-VE" ] && {
|
|
[ ! -e /dev/danube-port ] && mknod /dev/danube-port c 254 0
|
|
return;
|
|
}
|
|
[ `cat /proc/cpuinfo | grep system | cut -f 3 -d ' '` != "Danube" ] && {
|
|
[ ! -e /dev/amazon_s-port ] && mknod /dev/amazon_s-port c 240 1
|
|
echo "INFO configuring HW scheduling 33/66"
|
|
echo "t0 0x0" > /proc/mips/mtsched
|
|
echo "t1 0x1" > /proc/mips/mtsched
|
|
echo "v0 0x0" > /proc/mips/mtsched
|
|
}
|
|
[ `cat /proc/cpuinfo | grep system | cut -f 3 -d ' '` = "Danube" ] && {
|
|
[ ! -e /dev/danube-port ] && mknod /dev/danube-port c 240 1
|
|
# switch life-line relais
|
|
echo 1 > /sys/class/leds/fxs_relay/brightness
|
|
}
|
|
}
|