mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
wifidmd: 1.4.1: Move WiFi.DataElements Object to decollector
This commit is contained in:
parent
8df0ad8e46
commit
5474b1c6d0
3 changed files with 24 additions and 20 deletions
|
|
@ -1,13 +1,5 @@
|
||||||
if PACKAGE_wifidmd
|
if PACKAGE_wifidmd
|
||||||
|
|
||||||
config WIFIDMD_DISABLE_LEGACY_WIFI
|
|
||||||
bool "Disable legacy Wireless Objects like WiFi.Radio., WiFi.SSID., WiFi.AccessPoint. etc"
|
|
||||||
default n
|
|
||||||
|
|
||||||
config WIFIDMD_ENABLE_WIFI_DATAELEMENTS
|
|
||||||
bool "Enable Device.WiFi.DataElements. Object"
|
|
||||||
default y
|
|
||||||
|
|
||||||
config WIFIDMD_VENDOR_PREFIX
|
config WIFIDMD_VENDOR_PREFIX
|
||||||
string "Package specific datamodel Vendor Prefix for TR181 extensions"
|
string "Package specific datamodel Vendor Prefix for TR181 extensions"
|
||||||
default ""
|
default ""
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,13 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=wifidmd
|
PKG_NAME:=wifidmd
|
||||||
PKG_VERSION:=1.3.14
|
PKG_VERSION:=1.4.1
|
||||||
|
|
||||||
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/wifidmd.git
|
PKG_SOURCE_URL:=https://dev.iopsys.eu/bbf/wifidmd.git
|
||||||
PKG_SOURCE_VERSION:=882278e2783e37ffd65af261ed3ec404119a3ce8
|
PKG_SOURCE_VERSION:=006359c351be70a45f5bc1ef3d78e14e270aa7cf
|
||||||
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
|
||||||
|
|
@ -53,14 +53,6 @@ endif
|
||||||
|
|
||||||
TARGET_CFLAGS += -DBBF_VENDOR_PREFIX=\\\"$(VENDOR_PREFIX)\\\"
|
TARGET_CFLAGS += -DBBF_VENDOR_PREFIX=\\\"$(VENDOR_PREFIX)\\\"
|
||||||
|
|
||||||
ifeq ($(CONFIG_WIFIDMD_DISABLE_LEGACY_WIFI),y)
|
|
||||||
MAKE_FLAGS += WIFIDMD_DISABLE_LEGACY_WIFI=y
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_WIFIDMD_ENABLE_WIFI_DATAELEMENTS),y)
|
|
||||||
MAKE_FLAGS += WIFIDMD_ENABLE_WIFI_DATAELEMENTS=y
|
|
||||||
endif
|
|
||||||
|
|
||||||
define Package/wifidmd/install
|
define Package/wifidmd/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wifidmd $(1)/usr/sbin/wifidmd
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wifidmd $(1)/usr/sbin/wifidmd
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,28 @@
|
||||||
"unified_daemon": true,
|
"unified_daemon": true,
|
||||||
"services": [
|
"services": [
|
||||||
{
|
{
|
||||||
"parent_dm": "Device.",
|
"parent_dm": "Device.WiFi.",
|
||||||
"object": "WiFi"
|
"object": "Radio"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parent_dm": "Device.WiFi.",
|
||||||
|
"object": "SSID"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parent_dm": "Device.WiFi.",
|
||||||
|
"object": "AccessPoint"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parent_dm": "Device.WiFi.",
|
||||||
|
"object": "NeighboringWiFiDiagnostic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parent_dm": "Device.WiFi.",
|
||||||
|
"object": "EndPoint"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parent_dm": "Device.WiFi.",
|
||||||
|
"object": "Reset()"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"config": {
|
"config": {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue