summaryrefslogtreecommitdiffstats
path: root/package/platform/lantiq/ltq-vmmc/files
diff options
context:
space:
mode:
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-12-15 02:00:45 +0000
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-12-15 02:00:45 +0000
commit08abf72f92b0fd48b6ad95269cb7e1b79faf4fc5 (patch)
treed8b12f22700e417d41b2d2e0068cbf284cedc66e /package/platform/lantiq/ltq-vmmc/files
parent568f5ffa42a69bf880d454edbf2a5a3d98b166c9 (diff)
[lantiq] move voice packages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34695 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/platform/lantiq/ltq-vmmc/files')
-rw-r--r--package/platform/lantiq/ltq-vmmc/files/vmmc.init19
1 files changed, 19 insertions, 0 deletions
diff --git a/package/platform/lantiq/ltq-vmmc/files/vmmc.init b/package/platform/lantiq/ltq-vmmc/files/vmmc.init
new file mode 100644
index 000000000..100a97dc4
--- /dev/null
+++ b/package/platform/lantiq/ltq-vmmc/files/vmmc.init
@@ -0,0 +1,19 @@
+#!/bin/sh /etc/rc.common
+#
+# Activate Voice CPE TAPI subsystem LL driver for VMMC
+
+START=31
+
+start() {
+ [ ! -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
+ }
+}