map-agent: 4.5.0.0

This commit is contained in:
Jakob Olsson 2023-10-25 16:05:55 +02:00
parent 2b5c30f203
commit 881b8edaa9
2 changed files with 9 additions and 3 deletions

View file

@ -52,5 +52,8 @@ config AGENT_OPER_CHANNEL_CHANGE_RELAY_MCAST
bool "Use config opt to determine if Oper Channel Report CMDU is send as relayed multicast or directly to controller" bool "Use config opt to determine if Oper Channel Report CMDU is send as relayed multicast or directly to controller"
default y default y
config AGENT_USE_LIBDPP
bool "Depend on libdpp for DPP EasyConnect"
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.4.0.1 PKG_VERSION:=4.5.0.0
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_VERSION:=c86e2b8336b71beed7d46cd0d85b734d5dcf0530 PKG_SOURCE_VERSION:=b2d2082dd1e077b3028e9aa7cf5dc834ea20c361
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
@ -28,9 +28,12 @@ define Package/map-agent
CATEGORY:=Utilities CATEGORY:=Utilities
TITLE:=WiFi multi-AP Agent (EasyMesh R2) TITLE:=WiFi multi-AP Agent (EasyMesh R2)
DEPENDS:=+libwifi +libuci +libubox +ubus +libeasy +libieee1905 +ieee1905 \ DEPENDS:=+libwifi +libuci +libubox +ubus +libeasy +libieee1905 +ieee1905 \
+map-plugin +ip-bridge +map-plugin +ip-bridge +AGENT_USE_LIBDPP:libdpp
endef endef
ifeq ($(CONFIG_AGENT_USE_LIBDPP),y)
TARGET_CFLAGS += -DUSE_LIBDPP
endif
define Package/dynbhd define Package/dynbhd
SECTION:=utils SECTION:=utils