diff options
author | David Bauer <mail@david-bauer.net> | 2020-07-26 22:37:53 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2020-09-11 17:34:54 +0200 |
commit | e087bb5bd7d700c1de91395d62a3923e6305cc46 (patch) | |
tree | 44f2e6c95f3f74ab50531cd78110ab300173cf40 /package/base-files/Makefile | |
parent | f1bc66c7653e7603b4621f5ea14be129a2bd5e4f (diff) | |
download | upstream-e087bb5bd7d700c1de91395d62a3923e6305cc46.tar.gz upstream-e087bb5bd7d700c1de91395d62a3923e6305cc46.tar.bz2 upstream-e087bb5bd7d700c1de91395d62a3923e6305cc46.zip |
base-files: disable LEDs if default state is undefined
Set the default state for LEDs to off. When a trigger is set, the
trigger will turn the LED automatically on.
Currently LEDs might stay on, e.g. when the LED trigger is set to a
netdev trigger and the interface is never activated or the 'none'
trigger is selected without setting the 'default' option to 0 and it's
set for the LED indicating the system running state.
Using off as a default value is also consistent with the documentation
in the OpenWrt wiki.
Signed-off-by: David Bauer <mail@david-bauer.net>
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 2419849a44..73455174db 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/version.mk include $(INCLUDE_DIR)/feeds.mk PKG_NAME:=base-files -PKG_RELEASE:=228 +PKG_RELEASE:=229 PKG_FLAGS:=nonshared PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ |