Merge branch 'opconf' into 'devel'

icwmp: support non-persistent opconf file download

See merge request feed/iopsys!2130
This commit is contained in:
Vivek Dutta 2026-03-10 19:08:20 +05:30 committed by IOPSYS Dev
commit 95e2b19e2d
No known key found for this signature in database
2 changed files with 10 additions and 2 deletions

View file

@ -20,6 +20,10 @@ config ICWMP_ENABLE_SMM_SUPPORT
bool "Enable software module management support"
default n
config ICWMP_ENABLE_OPCONF_SUPPORT
bool "Enable support for managing Operator Configuration via CWMP"
default y
config ICWMP_ENABLE_ANNEX_F_INFORM_PARAM
bool "Enable Device.Gateway. and Device.ManagementServer.ManageableDevice. as inform parameter"
default y

View file

@ -8,13 +8,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=icwmp
PKG_VERSION:=9.11.2
PKG_VERSION:=9.11.3
LOCAL_DEV:=0
ifneq ($(LOCAL_DEV),1)
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://dev.iopsys.eu/bbf/icwmp.git
PKG_SOURCE_VERSION:=ea78dfdd2abf14250e7899d1ac37d5e5256fb65d
PKG_SOURCE_VERSION:=588f8803e490aaf59dfb305d8cfd765e41348924
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.zst
PKG_MIRROR_HASH:=skip
endif
@ -60,6 +60,10 @@ ifeq ($(CONFIG_ICWMP_ENABLE_SMM_SUPPORT),y)
EXTRA_CFLAGS += -DICWMP_ENABLE_SMM_SUPPORT
endif
ifeq ($(CONFIG_ICWMP_ENABLE_OPCONF_SUPPORT),y)
EXTRA_CFLAGS += -DICWMP_ENABLE_OPCONF_SUPPORT
endif
ifeq ($(CONFIG_ICWMP_VENDOR_PREFIX),"")
CMAKE_OPTIONS += -DBBF_VENDOR_PREFIX:String="$(CONFIG_BBF_VENDOR_PREFIX)"
else