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:
parent
d7092aceb8
commit
2bfa1ed82c
1 changed files with 12 additions and 15 deletions
|
@ -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)
|
||||||
}
|
status_led_off
|
||||||
;;
|
;;
|
||||||
done)
|
esac
|
||||||
[ -d $front_led ] && {
|
|
||||||
echo 0 > $front_led/brightness
|
|
||||||
}
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue