aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/base-files/etc/diag.sh
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/brcm2708/base-files/etc/diag.sh')
-rw-r--r--target/linux/brcm2708/base-files/etc/diag.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/target/linux/brcm2708/base-files/etc/diag.sh b/target/linux/brcm2708/base-files/etc/diag.sh
deleted file mode 100644
index ce0f591517..0000000000
--- a/target/linux/brcm2708/base-files/etc/diag.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2015-2016 OpenWrt.org
-# Copyright (C) 2017 LEDE project
-
-. /lib/functions.sh
-. /lib/functions/leds.sh
-
-set_state() {
- case "$(board_name)" in
- raspberrypi,2-model-b |\
- raspberrypi,model-b-plus)
- status_led="led1"
- ;;
- raspberrypi,model-b |\
- raspberrypi,model-zero |\
- raspberrypi,model-zero-w)
- status_led="led0"
- ;;
- esac
-
- case "$1" in
- preinit)
- status_led_blink_preinit
- ;;
- failsafe)
- status_led_blink_failsafe
- ;;
- preinit_regular)
- status_led_blink_preinit_regular
- ;;
- done)
- status_led_on
- ;;
- esac
-}