aboutsummaryrefslogtreecommitdiff
path: root/package/kernel/lantiq/ltq-vmmc/files/vmmc.init
blob: 78efe80b9808389ac73a6029597f76dad2293446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh /etc/rc.common
#
# Activate Voice CPE TAPI subsystem LL driver for VMMC

START=31

start() {
	for i in 10 11 12 13 14 15 16 17 18; do
		if ! [ -e /dev/vmmc$i ]; then
			mknod -m 664 /dev/vmmc$i c 122 $i
			chown root:vmmc /dev/vmmc$i
		fi
	done
}