From 2dbcf3c75c7230a0a038d600e3d03f2316e10116 Mon Sep 17 00:00:00 2001 From: Andreas Gnau Date: Wed, 20 Oct 2021 17:58:01 +0200 Subject: [PATCH] Update feed [ iopsys ] package [ endptmngr ] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------------------------------------------------------------------------- * 6d7b2e9 Adapt Broadcom SDK 5.04 workaround version check to 5.04L.02p1 * f28a1b7 BCM: Adapt to SDK 5.04L.02p1 endpoint_api changes ------------------------------------------------------------------------------- commit 6d7b2e9c90234767cb56a1e7885f42825bd6287a Author: Andreas Gnau Date: 2021-10-20 17:43:37 +0200 Adapt Broadcom SDK 5.04 workaround version check to 5.04L.02p1 Adapt the version check for the workaround for BCM SDK 5.04 a9e612c (Add a workaround need for building with Broadcom 5.04., 2020-11-08) to cover BCM SDK 5.04L.02p1. Base directory -> / src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ------------------------------------------------------------------------------- commit f28a1b7b08a0bcc8faa2b25e1acebf811e05e87c Author: Andreas Gnau Date: 2021-09-21 16:32:17 +0200 BCM: Adapt to SDK 5.04L.02p1 endpoint_api changes In SDK 5.04L.02p1, Broadcom has changed rtcpXRMode in struct EPZCNXPARAM with a bitfield rtcpXRConfig which enables a more fine-grained control of the RTCP XR configuration. For now, set it to HAPI_RTP_RTCP_XR_GENERATE_VOIP_REPORT as recommended by the comment in endpoint_api.h. More bits to set can be found in hapi_rtp.h in the SDK. Base directory -> / src/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ------------------------------------------------------------------------------- --- endptmngr/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/endptmngr/Makefile b/endptmngr/Makefile index 7e4b276e4..a88c5da68 100644 --- a/endptmngr/Makefile +++ b/endptmngr/Makefile @@ -7,13 +7,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=endptmngr -PKG_VERSION:=0.5 +PKG_VERSION:=0.6 LOCAL_DEV=0 ifneq ($(LOCAL_DEV),1) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://dev.iopsys.eu/iopsys/endptmngr.git -PKG_SOURCE_VERSION:=debfc47348d6e1fc1c8b126ad50a7f5f8db3e19d +PKG_SOURCE_VERSION:=6d7b2e9c90234767cb56a1e7885f42825bd6287a PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MIRROR_HASH:=skip endif @@ -30,7 +30,7 @@ PKG_BUILD_PARALLEL:=1 # indirectly. This ensures that the package is rebuilt on config-changes. PKG_CONFIG_DEPENDS:=CONFIG_TARGET_BOARD -export CONFIG_BRCM_SDK_VER_504002 +export CONFIG_BRCM_SDK_VER_504021 export CONFIG_BCM_CHIP_ID include $(INCLUDE_DIR)/package.mk