mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
icwmp: Option to select SMM feature
This commit is contained in:
parent
a73c089c2a
commit
39d484817e
2 changed files with 10 additions and 2 deletions
|
|
@ -15,4 +15,8 @@ config ICWMP_ENABLE_VENDOR_EXTN
|
||||||
config ICWMP_VENDOR_PREFIX
|
config ICWMP_VENDOR_PREFIX
|
||||||
string "Package specific datamodel Vendor Prefix for TR181 extensions"
|
string "Package specific datamodel Vendor Prefix for TR181 extensions"
|
||||||
default ""
|
default ""
|
||||||
|
|
||||||
|
config ICWMP_ENABLE_SMM_SUPPORT
|
||||||
|
bool "Enable software module management support"
|
||||||
|
default n
|
||||||
endmenu
|
endmenu
|
||||||
|
|
|
||||||
|
|
@ -8,13 +8,13 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=icwmp
|
PKG_NAME:=icwmp
|
||||||
PKG_VERSION:=9.9.4
|
PKG_VERSION:=9.9.5
|
||||||
|
|
||||||
LOCAL_DEV:=0
|
LOCAL_DEV:=0
|
||||||
ifneq ($(LOCAL_DEV),1)
|
ifneq ($(LOCAL_DEV),1)
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_URL:=https://dev.iopsys.eu/bbf/icwmp.git
|
PKG_SOURCE_URL:=https://dev.iopsys.eu/bbf/icwmp.git
|
||||||
PKG_SOURCE_VERSION:=e0fde6e9134afcf3ddd307ff13f4891e189cd6ea
|
PKG_SOURCE_VERSION:=4339ef5be002e85e2bae70a6c2a6af8605d9f586
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
||||||
PKG_MIRROR_HASH:=skip
|
PKG_MIRROR_HASH:=skip
|
||||||
endif
|
endif
|
||||||
|
|
@ -56,6 +56,10 @@ ifeq ($(CONFIG_ICWMP_ENABLE_VENDOR_EXTN),y)
|
||||||
EXTRA_CFLAGS += -DICWMP_ENABLE_VENDOR_EXTN
|
EXTRA_CFLAGS += -DICWMP_ENABLE_VENDOR_EXTN
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_ICWMP_ENABLE_SMM_SUPPORT),y)
|
||||||
|
EXTRA_CFLAGS += -DICWMP_ENABLE_SMM_SUPPORT
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_ICWMP_VENDOR_PREFIX),"")
|
ifeq ($(CONFIG_ICWMP_VENDOR_PREFIX),"")
|
||||||
CMAKE_OPTIONS += -DBBF_VENDOR_PREFIX:String="$(CONFIG_BBF_VENDOR_PREFIX)"
|
CMAKE_OPTIONS += -DBBF_VENDOR_PREFIX:String="$(CONFIG_BBF_VENDOR_PREFIX)"
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue