summaryrefslogtreecommitdiff
path: root/target/linux/brcm63xx/base-files/etc/diag.sh
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/brcm63xx/base-files/etc/diag.sh')
-rwxr-xr-xtarget/linux/brcm63xx/base-files/etc/diag.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/target/linux/brcm63xx/base-files/etc/diag.sh b/target/linux/brcm63xx/base-files/etc/diag.sh
deleted file mode 100755
index bbf5c0b..0000000
--- a/target/linux/brcm63xx/base-files/etc/diag.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2007-2013 OpenWrt.org
-
-. /lib/functions/leds.sh
-. /lib/brcm63xx.sh
-
-set_state() {
- case "$1" in
- preinit)
- status_led_set_timer 200 200
- ;;
- failsafe)
- status_led_set_timer 50 50
- ;;
- done)
- if [ "${status_led/power}" != "$status_led" ]; then
- status_led_on
- else
- status_led_off
- fi
- ;;
- esac
-}