diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-07-18 09:27:33 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-07-18 09:27:33 +0000 |
commit | a0a85ba7c63c87a3503a876698fe9ea6de414cfb (patch) | |
tree | 455da62449ab366ebe1d84fb2d75c41da9f6f3d2 /target | |
parent | bde1cf619a85703b8ab6c82403d2e066cbe208ec (diff) | |
download | upstream-a0a85ba7c63c87a3503a876698fe9ea6de414cfb.tar.gz upstream-a0a85ba7c63c87a3503a876698fe9ea6de414cfb.tar.bz2 upstream-a0a85ba7c63c87a3503a876698fe9ea6de414cfb.zip |
we are using the default-on trigger for power LEDs, no need to change their state from userspace
SVN-Revision: 16892
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/brcm63xx/base-files/etc/diag.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/target/linux/brcm63xx/base-files/etc/diag.sh b/target/linux/brcm63xx/base-files/etc/diag.sh deleted file mode 100755 index 325e4806ea..0000000000 --- a/target/linux/brcm63xx/base-files/etc/diag.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/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 -} |