mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-07 09:50:50 +01:00
-------------------------------------------------------------------------------
* ec56d86 LED behavior has changed. Only dectmngr2 should turn it off (when the radio is disabled). When uleapp connects to dectmngr2 the radio is enabled automatically.
-------------------------------------------------------------------------------
commit ec56d8652c75b1e014b27532345ce8b9e2650b4f
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-28 15:18:14 +0200
LED behavior has changed. Only dectmngr2 should turn it off (when the radio
is disabled). When uleapp connects to dectmngr2 the radio is enabled
automatically.
Base directory -> /
sysroot/usr/share/gigaset/usr/bin/led.sh | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
64 lines
1.3 KiB
Makefile
64 lines
1.3 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=gigaset-elements
|
|
|
|
PKG_VERSION:=2.3.0
|
|
# PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
|
|
|
PKG_GIGASET_ELEMENTS_SRC_URL ?= git@public.inteno.se:gigaset-elements.git
|
|
PKG_GIGASET_ELEMENTS_VERSION ?= v$(PKG_VERSION)
|
|
|
|
PKG_SOURCE_URL:=$(PKG_GIGASET_ELEMENTS_SRC_URL)
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=ec56d8652c75b1e014b27532345ce8b9e2650b4f
|
|
|
|
|
|
PKG_MAINTAINER:=Magier Marcin, Figlarek Piotr
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
######################################################
|
|
|
|
define Package/gigaset-elements
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libjson-c +libcurl
|
|
TITLE:=Gigaset elements
|
|
endef
|
|
|
|
######################################################
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) all
|
|
endef
|
|
|
|
|
|
|
|
define Package/gigaset-elements/install
|
|
$(CP) -r $(PKG_BUILD_DIR)/sysroot/* $(1)/
|
|
endef
|
|
|
|
|
|
|
|
define Package/gigaset-elements/preinst
|
|
#!/bin/sh
|
|
mkdir -p $${IPKG_INSTROOT}/usr/gigaset/data/cert
|
|
mkdir -p $${IPKG_INSTROOT}/usr/gigaset/data/fw
|
|
endef
|
|
|
|
|
|
define Package/gigaset-elements/postrm
|
|
#!/bin/sh
|
|
rm -rf $${IPKG_INSTROOT}/usr/gigaset/data
|
|
rm -rf /usr/share/gigaset
|
|
endef
|
|
|
|
|
|
######################################################
|
|
|
|
$(eval $(call BuildPackage,gigaset-elements))
|
|
|