diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-10-11 06:45:02 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-10-11 06:45:02 +0000 |
commit | 7a87fcf7607d436c31883a41ad22f58ac564ccc1 (patch) | |
tree | 0cdb15ba996d81d48bb2d22567a9df24592ba419 /package/base-files/Makefile | |
parent | fc3c1317b77c7ae816f8e66ef0f1987ac4eb45c8 (diff) | |
download | upstream-7a87fcf7607d436c31883a41ad22f58ac564ccc1.tar.gz upstream-7a87fcf7607d436c31883a41ad22f58ac564ccc1.tar.bz2 upstream-7a87fcf7607d436c31883a41ad22f58ac564ccc1.zip |
[package] base-files: skip LEDs handled by rssileds in led init-script
Without this, /etc/init.d/led will try to set the non-existing 'rssi' trigger.
This doesn't harm as the kernel will refuse this setting, but it outputs some
ugly log-lines:
Jun 24 10:15:19 OpenWrt user.info sysinit: setting up led RSSILOW
Jun 24 10:15:19 OpenWrt user.info sysinit: sh: write error: Invalid argument
...
In order to avoid this, skip LEDs with trigger = "rssi" in /etc/init.d/led
Signed-off-by: Daniel Golle <dgolle@allnet.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33717 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 1d56e9fc78..27ce05164a 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -11,7 +11,7 @@ include $(INCLUDE_DIR)/kernel.mk include $(INCLUDE_DIR)/version.mk PKG_NAME:=base-files -PKG_RELEASE:=117 +PKG_RELEASE:=118 PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ PKG_BUILD_DEPENDS:=opkg/host |