Browse Source

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 <[email protected]>

SVN-Revision: 42798
John Crispin 11 years ago
parent
commit
36faa5b145
1 changed files with 4 additions and 4 deletions
  1. 4 4
      target/linux/lantiq/base-files/sbin/dsl_notify.sh

+ 4 - 4
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