Files
wifipineapple-openwrt/target/linux/brcm63xx/base-files/etc/diag.sh
John Crispin 02f1075b0a base-files: diag does not need to insmod any drivers, procd already did it for us
Signed-off-by: John Crispin <blogic@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36999 3c298f89-4303-0410-b956-a3cf2f4a3e73
2013-06-21 16:53:43 +00:00

24 lines
334 B
Bash
Executable File

#!/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
}