mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-02-16 12:59:14 +01:00
------------------------------------------------------------------------------- * 17aa3b1 Sync handset clock when it becomes online * 715f597 Fix compiler warning * 359ca6f Merge common strings * 857e262 Indicate when a handset is busy in a call or changes state to offhook. Both with an event and in the handset "list". refs #9408 * 19cf38c Deny duplicate call setups * 97fdb0d For factory production we immediately call any registered handset. For normal end users this is a NOP. * f994070 Test for XAVI EG400 production. Call phone handset automatically when it has registered. ------------------------------------------------------------------------------- commit 17aa3b1d8d372ebcf4d37379f7cc4fb59c461d4b Author: Ronny Nilsson <ronny.nilsson@inteno.se> Date: 2016-11-23 14:59:11 +0100 Sync handset clock when it becomes online Base directory -> / src/handset.c | 39 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 36 insertions(+), 3 deletions(-) ------------------------------------------------------------------------------- commit 715f597100cb42ee8f720d45c45ad26e24c5a7be Author: Ronny Nilsson <ronny.nilsson@inteno.se> Date: 2016-11-23 14:57:55 +0100 Fix compiler warning Base directory -> / src/external_call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ------------------------------------------------------------------------------- commit 359ca6f29a9c816dd9a84f37ab906574f9312dba Author: Ronny Nilsson <ronny.nilsson@inteno.se> Date: 2016-11-23 11:11:57 +0100 Merge common strings Base directory -> / src/handset.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ------------------------------------------------------------------------------- commit 857e262b09050300306ad458eb713f4e61f7e788 Author: Ronny Nilsson <ronny.nilsson@inteno.se> Date: 2016-11-23 11:11:15 +0100 Indicate when a handset is busy in a call or changes state to offhook. Both with an event and in the handset "list". refs #9408 Base directory -> / src/external_call.c | 19 ++++++++++++++- src/external_call.h | 1 + src/ubus.c | 68 ++++++++++++++++++++++++++++------------------------- src/ubus.h | 2 ++ 4 files changed, 57 insertions(+), 33 deletions(-) ------------------------------------------------------------------------------- commit 19cf38c0902d846d2d17ac177bcc28710e80fe51 Author: Ronny Nilsson <ronny.nilsson@inteno.se> Date: 2016-11-23 11:07:35 +0100 Deny duplicate call setups Base directory -> / src/external_call.c | 1 + 1 file changed, 1 insertion(+) ------------------------------------------------------------------------------- commit 97fdb0d2494f2958be87b82f8857837368244611 Author: Ronny Nilsson <ronny.nilsson@inteno.se> Date: 2016-11-02 12:53:44 +0100 For factory production we immediately call any registered handset. For normal end users this is a NOP. Base directory -> / src/handset.c | 7 ++----- src/ubus-dummy.c | 26 ++++++++++++++++++++++++-- src/ubus.c | 8 ++++++++ src/ubus.h | 2 ++ 4 files changed, 36 insertions(+), 7 deletions(-) ------------------------------------------------------------------------------- commit f9940703522b66061ddf4bb6581e88eeb64b6ea1 Author: Ronny Nilsson <ronny.nilsson@inteno.se> Date: 2016-11-01 17:34:16 +0100 Test for XAVI EG400 production. Call phone handset automatically when it has registered. Base directory -> / src/handset.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) -------------------------------------------------------------------------------
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_RELEASE:=1
|
|
PKG_VERSION:=1.1.0
|
|
PKG_SOURCE_URL:=http://public.inteno.se:/dectmngr2
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=17aa3b1d8d372ebcf4d37379f7cc4fb59c461d4b
|
|
PKG_NAME:=dectmngr2
|
|
|
|
|
|
RSTRIP:=true
|
|
export BUILD_DIR
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/dectmngr2
|
|
CATEGORY:=Utilities
|
|
TITLE:=Dectmngr2
|
|
URL:=
|
|
DEPENDS:= +natalie-dect-h bcmkernel +libubox +ubus
|
|
endef
|
|
|
|
define Package/dectmngr2/description
|
|
Dectmngr2
|
|
endef
|
|
|
|
|
|
define Package/dectmngr2/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_DIR) $(1)/etc/dect/
|
|
$(INSTALL_DIR) $(1)/etc/config/
|
|
$(INSTALL_DIR) $(1)/etc/init.d/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/dectmngr2 $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/target.bin $(1)/etc/dect/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/nvs_default $(1)/etc/dect/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/dect $(1)/etc/init.d/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/dectmngr-wrapper.sh $(1)/usr/sbin/
|
|
$(CP) ./files/dect.config $(1)/etc/config/dect
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,dectmngr2))
|