map-agent: 4.3.6.2

This commit is contained in:
Janusz Dziedzic 2023-09-14 07:32:41 +00:00
parent fc7595c072
commit fdc4a07242
2 changed files with 9 additions and 2 deletions

View file

@ -45,5 +45,8 @@ config AGENT_LOCAL_ACS_SERVICE
config AGENT_STRICT_OPER_CHANNEL_REPORT config AGENT_STRICT_OPER_CHANNEL_REPORT
bool "Report operation channel strictly, skip some unsolicited reports" bool "Report operation channel strictly, skip some unsolicited reports"
config AGENT_WIRELESS_EXPLICIT_RELOAD
bool "Reload wireless after UCI commit"
endmenu endmenu
endif endif

View file

@ -5,9 +5,9 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=map-agent PKG_NAME:=map-agent
PKG_VERSION:=4.3.6.1 PKG_VERSION:=4.3.6.2
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_VERSION:=55d9ea94445c927fcf3ca2bea422217e7ca63fcb PKG_SOURCE_VERSION:=ea85c9d2da7e94ccb52206355208f62ab62b1e54
PKG_MAINTAINER:=Jakob Olsson <jakob.olsson@iopsys.eu> PKG_MAINTAINER:=Jakob Olsson <jakob.olsson@iopsys.eu>
PKG_LICENSE:=BSD-3-Clause PKG_LICENSE:=BSD-3-Clause
@ -94,6 +94,10 @@ ifeq ($(CONFIG_AGENT_STRICT_OPER_CHANNEL_REPORT),y)
TARGET_CFLAGS += -DSTRICT_OPER_CHANNEL_REPORT TARGET_CFLAGS += -DSTRICT_OPER_CHANNEL_REPORT
endif endif
ifeq ($(CONFIG_AGENT_WIRELESS_EXPLICIT_RELOAD),y)
TARGET_CFLAGS += -DWIRELESS_EXPLICIT_RELOAD
endif
MAKE_PATH:=src MAKE_PATH:=src
define Package/map-agent/install define Package/map-agent/install