mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-14 21:10:11 +01:00
-------------------------------------------------------------------------------
* 501eeb6 Type fix.
* 9ff37c8 Inform Broadcom DSP HAL whether Dect audio should be enabled. Must be done only when the Dect radio is active or other PCM audio sources break.
-------------------------------------------------------------------------------
commit 501eeb6c39b6f18c0d1e50e796dd4664273cfad8
Author: Ronny Nilsson <ronny.nilsson@iopsys.eu>
Date: 2018-09-10 17:13:07 +0200
Type fix.
Base directory -> /
src/connection_init.c | 1 -
1 file changed, 1 deletion(-)
-------------------------------------------------------------------------------
commit 9ff37c8535785a7f5501095cea2fdce363312232
Author: Ronny Nilsson <ronny.nilsson@iopsys.eu>
Date: 2018-09-10 17:11:48 +0200
Inform Broadcom DSP HAL whether Dect audio should be enabled. Must be done
only when the Dect radio is active or other PCM audio sources break.
Base directory -> /
src/connection_init.c | 59 +++++++++++++++++++++++++++++++++++++--------------
1 file changed, 43 insertions(+), 16 deletions(-)
-------------------------------------------------------------------------------
54 lines
1.3 KiB
Makefile
54 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.2.0
|
|
PKG_SOURCE_URL:=http://public.inteno.se:/dectmngr2
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=501eeb6c39b6f18c0d1e50e796dd4664273cfad8
|
|
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
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
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))
|