From 50bbb7d0460a2b9e3cb159a047c53f3ead0dd464 Mon Sep 17 00:00:00 2001 From: Rob White Date: Sat, 20 Jul 2024 21:55:10 +0100 Subject: [PATCH 1/2] mesh11sd: update to version 4.1.0 Maintainer: Rob White rob@blue-wave.net Compile tested: All Run tested: arm_cortex-a7_neon-vfpv4, mipsel_24kc, mips_24kc, aarch64_cortex-a53; On 23.5 and master/snapshot. Description: mesh11sd (4.1.0) This release adds new functionality that includes support for: * Opportunistic Wireless Encryption (OWE) on mesh gates. * Customer[Client] Premises Equipment mode (CPE) on mesh gates. Details can be found here: https://github.com/openNDS/mesh11sd/releases/tag/v4.1.0 Signed-off-by: Rob White --- mesh11sd/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/mesh11sd/Makefile b/mesh11sd/Makefile index ffebb56b5..dccaed4e3 100644 --- a/mesh11sd/Makefile +++ b/mesh11sd/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mesh11sd -PKG_VERSION:=4.0.1 +PKG_VERSION:=4.1.0 PKG_RELEASE:=1 PKG_MAINTAINER:=Rob White @@ -17,7 +17,7 @@ PKG_LICENSE_FILES:=LICENSE PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/opennds/mesh11sd/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=8029a0e41487d322b1bb20df05fc3ef2073b1239977f2b430b20fe7cabfe71de +PKG_HASH:=80406e70fadf58320ec4891c8fb1e93d118d2927de7c6d9749a15da6768b4ea5 PKG_BUILD_DIR:=$(BUILD_DIR)/mesh11sd-$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk @@ -43,8 +43,10 @@ define Package/mesh11sd/description Some of those that are supported, would fail to be implemented when the network is (re)started resulting in errors or dropped nodes. The mesh11sd daemon can dynamically check configured parameters and set them as required. In auto_config mode, upstream wan connectivity is checked (eg Internet feed) and when not present, layer 2 peer mode is autonomously enabled, - and when it is present, layer 3 portal mode is enabled. This allows the same simple router configuration to be used on all meshnodes in the layer 2 mesh. + and when it is present, layer 3 portal mode is enabled. This allows the same simple router configuration to be used on all meshnodes in the layer 2 mesh backhaul. Remote terminal sessions and remote file transfers are supported using the meshnode mac address as an identifier. + Simple configuration of Opportunistic Wireless Encryption (OWE) and Customer[Client] Premises Equipment (CPE) mode is supported on mesh gates. + OWE Transition Mode is enabled by default on mesh gates. This version does not require a Captive Portal to be running. endef From f29e4ed53a3c60bc40b81b98ae4e939b4d942c13 Mon Sep 17 00:00:00 2001 From: Rob White Date: Sat, 20 Jul 2024 22:25:17 +0100 Subject: [PATCH 2/2] mesh11sd: remove unneeded default PKG_BUILD_DIR line in makefile Signed-off-by: Rob White --- mesh11sd/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/mesh11sd/Makefile b/mesh11sd/Makefile index dccaed4e3..b6226a917 100644 --- a/mesh11sd/Makefile +++ b/mesh11sd/Makefile @@ -18,7 +18,6 @@ PKG_LICENSE_FILES:=LICENSE PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/opennds/mesh11sd/tar.gz/v$(PKG_VERSION)? PKG_HASH:=80406e70fadf58320ec4891c8fb1e93d118d2927de7c6d9749a15da6768b4ea5 -PKG_BUILD_DIR:=$(BUILD_DIR)/mesh11sd-$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk