mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36999 3c298f89-4303-0410-b956-a3cf2f4a3e73
23 lines
241 B
Bash
Executable File
23 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
|
|
set_state() {
|
|
status_led="sys"
|
|
|
|
case "$1" in
|
|
preinit)
|
|
status_led_blink_preinit
|
|
;;
|
|
|
|
failsafe)
|
|
status_led_blink_failsafe
|
|
;;
|
|
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|