aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2014-10-06 05:18:52 +0000
committerJohn Crispin <blogic@openwrt.org>2014-10-06 05:18:52 +0000
commitacb9d6b4e4c471495fa2e0377872e95a3c9c21f5 (patch)
tree8bbddfb59450aa4da2c113d971211c5e97a3c424 /target/linux/lantiq
parent0496c6a597a344e0a8e513dfb96d91e0962b38e8 (diff)
downloadupstream-acb9d6b4e4c471495fa2e0377872e95a3c9c21f5.tar.gz
upstream-acb9d6b4e4c471495fa2e0377872e95a3c9c21f5.tar.bz2
upstream-acb9d6b4e4c471495fa2e0377872e95a3c9c21f5.zip
lantiq: led name has changed from adsl -> dsl
make the notify script aware of this. https://dev.openwrt.org/ticket/18005 Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42798 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq')
-rwxr-xr-xtarget/linux/lantiq/base-files/sbin/dsl_notify.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/lantiq/base-files/sbin/dsl_notify.sh b/target/linux/lantiq/base-files/sbin/dsl_notify.sh
index 526a88925c..b514e257d4 100755
--- a/target/linux/lantiq/base-files/sbin/dsl_notify.sh
+++ b/target/linux/lantiq/base-files/sbin/dsl_notify.sh
@@ -21,10 +21,10 @@ config_load system
config_get default led_adsl default
if [ "$default" != 1 ]; then
case "$DSL_INTERFACE_STATUS" in
- "HANDSHAKE") led_timer adsl 500 500;;
- "TRAINING") led_timer adsl 200 200;;
- "UP") led_on adsl;;
- *) led_off adsl
+ "HANDSHAKE") led_timer dsl 500 500;;
+ "TRAINING") led_timer dsl 200 200;;
+ "UP") led_on dsl;;
+ *) led_off dsl
esac
fi