diff options
Diffstat (limited to 'target/linux/mpc85xx/base-files/etc/diag.sh')
-rwxr-xr-x | target/linux/mpc85xx/base-files/etc/diag.sh | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/mpc85xx/base-files/etc/diag.sh b/target/linux/mpc85xx/base-files/etc/diag.sh deleted file mode 100755 index 123a90d..0000000 --- a/target/linux/mpc85xx/base-files/etc/diag.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# Copyright (C) 2013 OpenWrt.org - -. /lib/functions/leds.sh -. /lib/mpc85xx.sh - -get_status_led() { - case $(mpc85xx_board_name) in - tl-wdr4900-v1) - status_led="tp-link:blue:system" - ;; - esac -} - -set_state() { - get_status_led - - case "$1" in - preinit) - status_led_blink_preinit - ;; - - failsafe) - status_led_blink_failsafe - ;; - - done) - status_led_on - ;; - esac -} |