From d225c215ee17274b5918958863f3395af1768c64 Mon Sep 17 00:00:00 2001 From: vdutta Date: Mon, 6 Jun 2022 19:36:03 +0530 Subject: [PATCH] icwmp: 8.4.13 --- icwmp/Config_cwmp.in | 16 ---------------- icwmp/Makefile | 20 ++------------------ 2 files changed, 2 insertions(+), 34 deletions(-) diff --git a/icwmp/Config_cwmp.in b/icwmp/Config_cwmp.in index a90e10ef3..3a989dd6b 100644 --- a/icwmp/Config_cwmp.in +++ b/icwmp/Config_cwmp.in @@ -12,19 +12,3 @@ config CWMP_ACS_MULTI config CWMP_ACS_HDM bool "Select HDM as ACS server" endchoice - -config CWMP_DEBUG - bool "Compile with debug options" - depends on PACKAGE_icwmp || \ - PACKAGE_icwmp-openssl || \ - PACKAGE_icwmp-wolfssl || \ - PACKAGE_icwmp-mbedtls - default y - -config CWMP_DEVEL_DEBUG - bool "Compile with development debug options (deprecated)" - depends on PACKAGE_icwmp || \ - PACKAGE_icwmp-openssl || \ - PACKAGE_icwmp-wolfssl || \ - PACKAGE_icwmp-mbedtls - default n diff --git a/icwmp/Makefile b/icwmp/Makefile index 1ebb287a2..2477eadb2 100755 --- a/icwmp/Makefile +++ b/icwmp/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=icwmp -PKG_VERSION:=8.4.12 +PKG_VERSION:=8.4.13 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://dev.iopsys.eu/iopsys/icwmp.git -PKG_SOURCE_VERSION:=617f5371093fdf1d7a80c00c228cc70564c731f3 +PKG_SOURCE_VERSION:=5f5bdd6e136398482b3d634e5f76510bae1fe766 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MIRROR_HASH:=skip @@ -78,20 +78,14 @@ endef ifeq ($(BUILD_VARIANT),openssl) CONFIGURE_ARGS += --enable-libopenssl -TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/ -TARGET_LDFLAGS += "-lssl" endif ifeq ($(BUILD_VARIANT),wolfssl) CONFIGURE_ARGS += --enable-libwolfssl -TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/wolfssl -TARGET_LDFLAGS += "-lwolfssl" endif ifeq ($(BUILD_VARIANT),mbedtls) CONFIGURE_ARGS += --enable-libmbedtls -TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/ -TARGET_LDFLAGS += "-lmbedtls" endif ifeq ($(CONFIG_CWMP_ACS_MULTI),y) @@ -104,16 +98,6 @@ CONFIGURE_ARGS += \ --enable-acs=hdm endif -ifeq ($(CONFIG_CWMP_DEBUG),y) -CONFIGURE_ARGS += \ - --enable-debug -endif - -ifeq ($(CONFIG_CWMP_DEVEL_DEBUG),y) -CONFIGURE_ARGS += \ - --enable-devel -endif - USE_LOCAL=$(shell ls ./src/ 2>/dev/null >/dev/null && echo 1) ifneq ($(USE_LOCAL),) define Build/Prepare