diff options
author | John Crispin <john@openwrt.org> | 2012-12-15 02:00:45 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2012-12-15 02:00:45 +0000 |
commit | baae9d16e9930cf346f9954026cbdf8c3d015e53 (patch) | |
tree | be8ad5f3dafd1f7e951acbda12b07a099277a87e /package/platform/lantiq/ltq-vmmc/files | |
parent | 06c9170a7c3742598d915486c40724c64bf988ea (diff) | |
download | mtk-20170518-baae9d16e9930cf346f9954026cbdf8c3d015e53.zip mtk-20170518-baae9d16e9930cf346f9954026cbdf8c3d015e53.tar.gz mtk-20170518-baae9d16e9930cf346f9954026cbdf8c3d015e53.tar.bz2 |
move voice packages
SVN-Revision: 34695
Diffstat (limited to 'package/platform/lantiq/ltq-vmmc/files')
-rw-r--r-- | package/platform/lantiq/ltq-vmmc/files/vmmc.init | 19 |
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 0000000..100a97d --- /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 + } +} |