Merge branch 'dev_ppm2984_mlo' into 'main'

pwhm: upstep pwhm version to v7.6.3

Closes PPM-2984

See merge request prpl-foundation/prplos/feeds/feed_wifi_core!8
This commit is contained in:
Mohammed SI ALI
2025-02-14 18:10:59 +00:00
2 changed files with 21 additions and 5 deletions

View File

@@ -1,13 +1,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=pwhm
PKG_VERSION:=v7.3.1
PKG_VERSION:=v7.6.3
SHORT_DESCRIPTION:=PrplMesh WHM
PKG_SOURCE:=pwhm-v7.3.1.tar.gz
PKG_SOURCE_URL:=https://gitlab.com/prpl-foundation/prplmesh/pwhm/plugins/pwhm/-/archive/v7.3.1
PKG_HASH:=2813d34e7411fcebce60c561a98702255ceab799404d223e2c7cb1da57693510
PKG_BUILD_DIR:=$(BUILD_DIR)/pwhm-v7.3.1
PKG_SOURCE:=pwhm-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://gitlab.com/prpl-foundation/prplmesh/pwhm/plugins/pwhm/-/archive/$(PKG_VERSION)
PKG_HASH:=b3e024b7e536634cd5dfc6cf47cb8a82b2abd6cd62238adde379fe5dc8f40d93
PKG_BUILD_DIR:=$(BUILD_DIR)/pwhm-$(PKG_VERSION)
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
PKG_LICENSE:=BSD-2-Clause-Patent
PKG_LICENSE_FILES:=LICENSE

View File

@@ -0,0 +1,16 @@
%populate {
object WiFi {
object 'SSID' {
{% for ( let Itf in BD.Interfaces ) : if ( BDfn.isInterfaceWirelessAp(Itf.Name) && BDfn.isInterfaceLan(Itf.Name) ) : %}
object '{{Itf.Alias}}' {
parameter MLDUnit = 0;
}
{% endif; endfor; %}
{% for ( let Itf in BD.Interfaces ) : if ( BDfn.isInterfaceWirelessAp(Itf.Name) && BDfn.isInterfaceGuest(Itf.Name) ) : %}
object '{{Itf.Alias}}' {
parameter MLDUnit = 1;
}
{% endif; endfor; %}
}
}
}