mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-05 22:33:04 +00:00
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,20 +1,17 @@
|
||||
#!/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() {
|
||||
case "$1" in
|
||||
preinit)
|
||||
[ -d $front_led ] && {
|
||||
echo none > $front_led/trigger
|
||||
echo 255 > $front_led/brightness
|
||||
}
|
||||
;;
|
||||
done)
|
||||
[ -d $front_led ] && {
|
||||
echo 0 > $front_led/brightness
|
||||
}
|
||||
;;
|
||||
esac
|
||||
case "$1" in
|
||||
preinit)
|
||||
status_led_on
|
||||
;;
|
||||
done)
|
||||
status_led_off
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user