h69k/package/kernel/lantiq/ltq-vmmc/files/vmmc.init

15 lines
257 B
Plaintext
Raw Permalink Normal View History

2024-09-29 14:35:28 +00:00
#!/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
}