summaryrefslogtreecommitdiffstats
path: root/package/ltq-vmmc
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2012-06-02 14:03:28 +0000
committerJohn Crispin <john@openwrt.org>2012-06-02 14:03:28 +0000
commita4fa2cb6115815a383933ace6791e8954b2975e0 (patch)
treea26d0d82b058b57646103be015aff4563a334af9 /package/ltq-vmmc
parentf4b02b91cea9aef4fe1913cd333cfe84ec7d89ff (diff)
downloadmaster-31e0f0ae-a4fa2cb6115815a383933ace6791e8954b2975e0.tar.gz
master-31e0f0ae-a4fa2cb6115815a383933ace6791e8954b2975e0.tar.bz2
master-31e0f0ae-a4fa2cb6115815a383933ace6791e8954b2975e0.zip
move /dev/vmmcX creation to a more central place
SVN-Revision: 32024
Diffstat (limited to 'package/ltq-vmmc')
-rw-r--r--package/ltq-vmmc/files/vmmc.init26
1 files changed, 10 insertions, 16 deletions
diff --git a/package/ltq-vmmc/files/vmmc.init b/package/ltq-vmmc/files/vmmc.init
index bae7badaf0..100a97dc45 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
}
}