mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-07 15:04:03 +02:00
8a891d72ed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16887 3c298f89-4303-0410-b956-a3cf2f4a3e73
13 lines
292 B
Bash
Executable File
13 lines
292 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
|
|
set_state() {
|
|
case "$1" in
|
|
done)
|
|
[ -d /sys/class/leds/power ] && {
|
|
echo 1 >/sys/class/leds/power/brightness
|
|
}
|
|
;;
|
|
esac
|
|
}
|