blob: be825379f9f18d3671180275915f516740800ec6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#!/bin/sh
# Copyright (C) 2014-2016 OpenWrt.org
# Copyright (C) 2016 LEDE-Project.org
. /lib/functions.sh
. /lib/functions/leds.sh
get_status_led() {
case $(board_name) in
linksys,caiman)
status_led="caiman:white:power"
;;
linksys,cobra)
status_led="cobra:white:power"
;;
linksys,mamba)
status_led="mamba:white:power"
;;
linksys,rango)
status_led="rango:white:power"
;;
linksys,shelby)
status_led="shelby:white:power"
;;
linksys,venom)
status_led="venom:blue:power"
;;
esac
}
set_state() {
get_status_led
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
}
|