diff options
author | John Crispin <john@openwrt.org> | 2011-02-01 14:32:25 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-02-01 14:32:25 +0000 |
commit | fd551c1fa7526aca631a07f0fd3134433c9fa5fe (patch) | |
tree | 1b6db352842d684f7cbd478a2dbc1724d09cdfe5 /package/ifx-vmmc/files/vmmc.init | |
parent | 79b3d8f69aa02e2dc80f04a1ac84e971a2a33f8b (diff) | |
download | upstream-fd551c1fa7526aca631a07f0fd3134433c9fa5fe.tar.gz upstream-fd551c1fa7526aca631a07f0fd3134433c9fa5fe.tar.bz2 upstream-fd551c1fa7526aca631a07f0fd3134433c9fa5fe.zip |
* rename voice package * sync with lantiqs release * make it work on lantiq kernel
SVN-Revision: 25275
Diffstat (limited to 'package/ifx-vmmc/files/vmmc.init')
-rw-r--r-- | package/ifx-vmmc/files/vmmc.init | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/package/ifx-vmmc/files/vmmc.init b/package/ifx-vmmc/files/vmmc.init deleted file mode 100644 index bae7badaf0..0000000000 --- a/package/ifx-vmmc/files/vmmc.init +++ /dev/null @@ -1,25 +0,0 @@ -#!/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 - } -} |