From 83ca06b6263bc5b3fc35b4a1c08e3e2429118d4d Mon Sep 17 00:00:00 2001 From: Jakob Olsson Date: Fri, 10 Oct 2025 10:52:41 +0200 Subject: [PATCH] map-controller: 6.4.4.0: add ZEROTOUCH_DPP --- map-controller/Config.in | 4 ++++ map-controller/Makefile | 7 +++++-- 2 files changed, 9 insertions(+), 2 deletions(-) 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.