diff options
author | Mathias Kresin <dev@kresin.me> | 2018-01-15 01:23:36 +0100 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2018-01-18 07:22:37 +0100 |
commit | acafbac4b33a5273e6125cf2fcdf118f70cd23ec (patch) | |
tree | cd45a0547b83d3901cfe317025c3e31fb8dbcfa3 /package/base-files/Makefile | |
parent | f476c9a7458f9a1da876df02cce065f9cdeedd87 (diff) | |
download | upstream-acafbac4b33a5273e6125cf2fcdf118f70cd23ec.tar.gz upstream-acafbac4b33a5273e6125cf2fcdf118f70cd23ec.tar.bz2 upstream-acafbac4b33a5273e6125cf2fcdf118f70cd23ec.zip |
base-files: gpio switch: check if direction can be set
Obviously not all GPIO controller allow to change the direction. The issue
is around since the beginning of the script but only due to the recent
changes error messages are more visible.
Add a check if a change of the direction is supported by the GPIO
controller and fallback to setting only the value if not.
Fixes: FS#1271
Signed-off-by: Mathias Kresin <dev@kresin.me>
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 0055474166..ed34480948 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:=183 +PKG_RELEASE:=184 PKG_FLAGS:=nonshared PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ |