cobalt: migrate platform to common led helper functions
Signed-off-by: Michael Heimpold <mhei@heimpold.de> Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 35662
This commit is contained in:
		| @@ -1,20 +1,17 @@ | |||||||
| #!/bin/sh | #!/bin/sh | ||||||
| # Copyright (C) 2009-2011 OpenWrt.org | # Copyright (C) 2009-2013 OpenWrt.org | ||||||
|  |  | ||||||
| front_led=/sys/class/leds/qube::front | . /lib/functions/leds.sh | ||||||
|  |  | ||||||
|  | status_led="qube::front" | ||||||
|  |  | ||||||
| set_state() { | set_state() { | ||||||
| 	case "$1" in | 	case "$1" in | ||||||
| 	preinit) | 	preinit) | ||||||
|                         [ -d $front_led ] && { | 		status_led_on | ||||||
|                                 echo none > $front_led/trigger |  | ||||||
|                                 echo 255 > $front_led/brightness |  | ||||||
|                         } |  | ||||||
| 		;; | 		;; | ||||||
| 	done) | 	done) | ||||||
|                         [ -d $front_led ] && { | 		status_led_off | ||||||
| 				echo 0 > $front_led/brightness |  | ||||||
|                         } |  | ||||||
| 		;; | 		;; | ||||||
| 	esac | 	esac | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Florian Fainelli
					Florian Fainelli