diff options
author | Travis Kemen <thepeople@openwrt.org> | 2008-09-13 00:08:39 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2008-09-13 00:08:39 +0000 |
commit | 3476a63cd2b1d7ae40a29aafc72a5bdc41397cf7 (patch) | |
tree | 21387788d04a7467bc9cad8fc83ea34357a53cba /package/base-files/files/sbin | |
parent | 755977959a0d111dd0e31078c1b57af95455f8cd (diff) | |
download | upstream-3476a63cd2b1d7ae40a29aafc72a5bdc41397cf7.tar.gz upstream-3476a63cd2b1d7ae40a29aafc72a5bdc41397cf7.tar.bz2 upstream-3476a63cd2b1d7ae40a29aafc72a5bdc41397cf7.zip |
make option name optional
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12585 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/sbin')
-rwxr-xr-x | package/base-files/files/sbin/led.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/sbin/led.sh b/package/base-files/files/sbin/led.sh index e4e92af7ea..44629d9903 100755 --- a/package/base-files/files/sbin/led.sh +++ b/package/base-files/files/sbin/led.sh @@ -9,7 +9,7 @@ do_led() { local sysfs config_get name $1 name config_get sysfs $1 sysfs - [ "$name" == "$NAME" -a -e "/sys/class/leds/${sysfs}" ] && { + [ "$name" == "$NAME" -o "$sysfs" = "$NAME" -a -e "/sys/class/leds/${sysfs}" ] && { [ "$ACTION" == "set" ] && echo 1 >/sys/class/leds/${sysfs}/brightness \ || echo 0 >/sys/class/leds/${sysfs}/brightness |