diff --git a/map-controller/Config.in b/map-controller/Config.in index 0e577d347..424055240 100644 --- a/map-controller/Config.in +++ b/map-controller/Config.in @@ -39,6 +39,10 @@ config CONTROLLER_EASYMESH_VENDOR_EXT_OUI config CONTROLLER_USE_LIBDPP bool "Depend on libdpp for DPP EasyConnect" +config CONTROLLER_ZEROTOUCH_DPP + bool "Enable Zero-touch DPP bootstrapping via passphrase." + default n + config CONTROLLER_PROPAGATE_PROBE_REQ depends on CONTROLLER_EASYMESH_VENDOR_EXT bool "Enable publishing probe requests vendor specific messages as UBUS events" diff --git a/map-controller/Makefile b/map-controller/Makefile index bf309eb78..f56f8e8ce 100644 --- a/map-controller/Makefile +++ b/map-controller/Makefile @@ -6,9 +6,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=map-controller -PKG_VERSION:=6.4.3.5 +PKG_VERSION:=6.4.4.0 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=089ab7bc44a35d5b8bb6758139ab7fb6d3707b6b +PKG_SOURCE_VERSION:=d2e91ca156dbe0b44f0fc551b0a353137343fdf1 PKG_MAINTAINER:=Jakob Olsson LOCAL_DEV=0 @@ -36,6 +36,9 @@ ifeq ($(CONFIG_CONTROLLER_USE_LIBDPP),y) TARGET_CFLAGS += -DUSE_LIBDPP endif +ifeq ($(CONFIG_CONTROLLER_ZEROTOUCH_DPP),y) + TARGET_CFLAGS += -DZEROTOUCH_DPP +endif define Package/map-controller/description This package provides WiFi MultiAP Controller as per the EasyMesh-R2 specs.