From ae1aca2eb7e34f108e06bfb3cacbcfc7536006b9 Mon Sep 17 00:00:00 2001 From: blogic Date: Sat, 2 Jun 2012 14:03:28 +0000 Subject: [ltq-vmmc] move /dev/vmmcX creation to a more central place git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32024 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/ltq-vmmc/files/vmmc.init | 26 ++++++++++---------------- package/owsip/files/telephony.init | 17 ----------------- 2 files changed, 10 insertions(+), 33 deletions(-) (limited to 'package') diff --git a/package/ltq-vmmc/files/vmmc.init b/package/ltq-vmmc/files/vmmc.init index bae7badaf..100a97dc4 100644 --- a/package/ltq-vmmc/files/vmmc.init +++ b/package/ltq-vmmc/files/vmmc.init @@ -5,21 +5,15 @@ 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 + [ ! -c /dev/vmmc10 ] && { + mknod /dev/vmmc10 c 122 10 + mknod /dev/vmmc11 c 122 11 + mknod /dev/vmmc12 c 122 12 + mknod /dev/vmmc13 c 122 13 + mknod /dev/vmmc14 c 122 14 + mknod /dev/vmmc15 c 122 15 + mknod /dev/vmmc16 c 122 16 + mknod /dev/vmmc17 c 122 17 + mknod /dev/vmmc18 c 122 18 } } diff --git a/package/owsip/files/telephony.init b/package/owsip/files/telephony.init index 9e40c41f4..90909e625 100644 --- a/package/owsip/files/telephony.init +++ b/package/owsip/files/telephony.init @@ -7,22 +7,6 @@ SERVICE_PID_FILE=/var/run/owsip.pid . /lib/functions.sh -load_module() { - MODULE=`lsmod | grep vmmc` - [ ! -z "$MODULE" ] || ( insmod vmmc ; sleep 3 ) - [ ! -c /dev/vmmc10 ] && { - mknod /dev/vmmc10 c 122 10 - mknod /dev/vmmc11 c 122 11 - mknod /dev/vmmc12 c 122 12 - mknod /dev/vmmc13 c 122 13 - mknod /dev/vmmc14 c 122 14 - mknod /dev/vmmc15 c 122 15 - mknod /dev/vmmc16 c 122 16 - mknod /dev/vmmc17 c 122 17 - mknod /dev/vmmc18 c 122 18 - } -} - relay_set () { local cfg="$1" local gpio value @@ -41,7 +25,6 @@ relay_set () { start() { config_load telephony config_foreach relay_set relay - load_module service_start /usr/bin/owsip_ua } -- cgit v1.2.3