diff --git a/map-topology/Config.in b/map-topology/Config.in index 31556ac5a..23bca9105 100644 --- a/map-topology/Config.in +++ b/map-topology/Config.in @@ -18,5 +18,9 @@ config TOPOLOGYD_EASYMESH_VENDOR_EXT_OUI enabled through TOPOLOGYD_EASYMESH_VENDOR_EXT. Please provide the Vendor's OUI through which such features would be exposed. +config TOPOLOGYD_HOST_WAN_STATS + bool "Enable wan statistics collection per hosts" + default y + endmenu endif diff --git a/map-topology/Makefile b/map-topology/Makefile index e9878ccea..d1eed4158 100644 --- a/map-topology/Makefile +++ b/map-topology/Makefile @@ -6,11 +6,11 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=map-topology -PKG_VERSION:=2.5.1.21 +PKG_VERSION:=2.5.1.22 LOCAL_DEV:=0 ifneq ($(LOCAL_DEV),1) -PKG_SOURCE_VERSION:=693b79873af0017bd53ec001af7f3997565420e8 +PKG_SOURCE_VERSION:=b7fefff9aad74568ec8a7c470cb73c54b736bec2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://dev.iopsys.eu/multi-ap/map-topology.git PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz @@ -52,6 +52,9 @@ ifeq ($(CONFIG_TOPOLOGYD_EASYMESH_VENDOR_EXT),y) TARGET_CFLAGS += -DEASYMESH_VENDOR_EXT_OUI=\\\"$(CONFIG_TOPOLOGYD_EASYMESH_VENDOR_EXT_OUI)\\\" endif +ifeq ($(CONFIG_TOPOLOGYD_HOST_WAN_STATS),y) +TARGET_CFLAGS += -DHOST_WAN_STATS +endif ifeq ($(LOCAL_DEV),1) define Build/Prepare