icwmp: support non-persistent opconf file download

(cherry picked from commit 24b055f8cb)
This commit is contained in:
Vivek Kumar Dutta 2026-03-07 17:30:49 +05:30
parent c390be6c7e
commit 1f8e61003e
No known key found for this signature in database
GPG key ID: 4E09F5AD8265FD4C
2 changed files with 10 additions and 2 deletions

View file

@ -19,4 +19,8 @@ config ICWMP_VENDOR_PREFIX
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
endmenu

View file

@ -8,13 +8,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=icwmp
PKG_VERSION:=9.9.9.9
PKG_VERSION:=9.9.9.10
LOCAL_DEV:=0
ifneq ($(LOCAL_DEV),1)
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://dev.iopsys.eu/bbf/icwmp.git
PKG_SOURCE_VERSION:=87ed3c255cf6285bfaf79cedcb3bca209d27a5b4
PKG_SOURCE_VERSION:=036211cf19c4077a1ac5a50e93427e8166e70752
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
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