mirror of
https://github.com/openwrt/routing.git
synced 2026-04-15 19:02:12 +00:00
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 24.10, 25.12 and master/snapshot. Description: mesh11sd (6.2.0) This is a major new release with significant new functionality. It includes: * Add three dimensional meshnode mobility support. Stable connectivity with intra-mesh relative velocities (3dRV) of 1.5 m/s or greater is supported. * Add Access Point usage data collection from all mesh peers in a centralised database residing on the mesh portal (apmond) * Add Comprehensive wireless chipset capability discovery (wifi-chipset-detect) The full changelog can be seen here: https://github.com/openNDS/mesh11sd/blob/v6.2.0/ChangeLog Signed-off-by: Rob White <rob@blue-wave.net>
62 lines
2.3 KiB
Makefile
62 lines
2.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
# Copyright (C) 2022 - 2024 BlueWave Projects and Services <licence@blue-wave.net>
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mesh11sd
|
|
PKG_VERSION:=6.2.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_MAINTAINER:=Rob White <rob@blue-wave.net>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
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:=89117cc65c6661cc22829e248cc5ee7e9fce6a341d2dbe54bfd1a7d95f9cef31
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/mesh11sd
|
|
SUBMENU:=Captive Portals
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Dynamic 802.11s Mesh Configuration Daemon
|
|
PKGARCH:=all
|
|
URL:=https://github.com/opennds/mesh11sd
|
|
endef
|
|
|
|
define Package/mesh11sd/description
|
|
Mesh11sd is a package that autonomously configures and manages all aspects of an 802.11s mesh network and its connected nodes.
|
|
The package acts as a service daemon, dynamically setting mesh parameters across all nodes.
|
|
It is particularly useful for simplifying setup, reducing manual configuration, and improving network reliability.
|
|
Support for point to multi-point vxlan tunneling over the wireless backhaul is included as standard.
|
|
A guest/iot type network is auto-configured without requiring complex vlan setup.
|
|
If required, custom vlan trunking over the vxlan tunnel is supported.
|
|
Mesh-gate access point usage is collected in a central database on the mesh portal.
|
|
A command line interface is provided for reporting in json format output.
|
|
An optional Customer/Client Premises Equipment (CPE) mode, greatly simplifies rollout of community WISP projects.
|
|
endef
|
|
|
|
define Package/mesh11sd/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/mesh11sd $(1)/usr/sbin
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/linux_openwrt/mesh11sd/files/etc/config/mesh11sd $(1)/etc/config/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/linux_openwrt/mesh11sd/files/etc/init.d/mesh11sd $(1)/etc/init.d/
|
|
endef
|
|
|
|
define Package/mesh11sd/conffiles
|
|
/etc/config/mesh11sd
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,mesh11sd))
|