ar7: migrate to common led helper functions
Signed-off-by: Michael Heimpold <mhei@heimpold.de> Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 35659
This commit is contained in:
		@@ -1,5 +1,5 @@
 | 
				
			|||||||
#!/bin/sh
 | 
					#!/bin/sh
 | 
				
			||||||
# Copyright (C) 2007-2012 OpenWrt.org
 | 
					# Copyright (C) 2007-2013 OpenWrt.org
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# This setup gives us 4.5 distinguishable states:
 | 
					# This setup gives us 4.5 distinguishable states:
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
@@ -12,36 +12,30 @@
 | 
				
			|||||||
# (1-LED) Heartbeat:    normal operation
 | 
					# (1-LED) Heartbeat:    normal operation
 | 
				
			||||||
# (2-LED) Solid GREEN:  normal operation
 | 
					# (2-LED) Solid GREEN:  normal operation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					. /lib/functions/leds.sh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					get_status_led() {
 | 
				
			||||||
 | 
						[ -d "/sys/class/leds/status" ] && status_led="status"
 | 
				
			||||||
 | 
						[ -d "/sys/class/leds/power:green" ] && status_led="power:green"
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
set_state() {
 | 
					set_state() {
 | 
				
			||||||
 | 
						get_status_led
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	case "$1" in
 | 
						case "$1" in
 | 
				
			||||||
	preinit)
 | 
						preinit)
 | 
				
			||||||
                        [ -d /sys/class/leds/status ] && {
 | 
							status_led_set_timer 100 100
 | 
				
			||||||
                                echo timer >/sys/class/leds/status/trigger
 | 
					 | 
				
			||||||
                                echo 100 >/sys/class/leds/status/delay_on
 | 
					 | 
				
			||||||
                                echo 100 >/sys/class/leds/status/delay_off
 | 
					 | 
				
			||||||
                        :; } || [ -d /sys/class/leds/power\:green ] && {
 | 
					 | 
				
			||||||
                                echo timer >/sys/class/leds/power\:green/trigger
 | 
					 | 
				
			||||||
                                echo 100 >/sys/class/leds/power\:green/delay_on
 | 
					 | 
				
			||||||
                                echo 100 >/sys/class/leds/power\:green/delay_off
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
		;;
 | 
							;;
 | 
				
			||||||
	failsafe)
 | 
						failsafe)
 | 
				
			||||||
                        [ -d /sys/class/leds/status ] && {
 | 
							status_led_set_timer 50 50
 | 
				
			||||||
                                echo timer >/sys/class/leds/status/trigger
 | 
					 | 
				
			||||||
                                echo 50 >/sys/class/leds/status/delay_on
 | 
					 | 
				
			||||||
                                echo 50 >/sys/class/leds/status/delay_off
 | 
					 | 
				
			||||||
                        :; } || [ -d /sys/class/leds/power\:green ] && {
 | 
					 | 
				
			||||||
                                echo timer >/sys/class/leds/power\:green/trigger
 | 
					 | 
				
			||||||
                                echo 50 >/sys/class/leds/power\:green/delay_on
 | 
					 | 
				
			||||||
                                echo 50 >/sys/class/leds/power\:green/delay_off
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
		;;
 | 
							;;
 | 
				
			||||||
	done)
 | 
						done)
 | 
				
			||||||
                        [ -d /sys/class/leds/status ] && {
 | 
							[ "$status_led" = "status" ] && {
 | 
				
			||||||
                                echo heartbeat >/sys/class/leds/status/trigger
 | 
								status_led_set_heartbeat
 | 
				
			||||||
                        :; } || [ -d /sys/class/leds/power\:green ] && {
 | 
							}
 | 
				
			||||||
                                echo default-on >/sys/class/leds/power\:green/trigger
 | 
							[ "$status_led" = "power:green" ] && {
 | 
				
			||||||
                                echo none >/sys/class/leds/power\:red/trigger
 | 
								status_led_set_on
 | 
				
			||||||
 | 
								led_off "power:red"
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		;;
 | 
							;;
 | 
				
			||||||
	esac
 | 
						esac
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user