Compare commits

..

6 Commits

Author SHA1 Message Date
jaspreetsachdev
ce441c5b1b Merge pull request #541 from Telecominfraproject/v2.9.1-merge
v2.9.1 merge
2023-04-11 13:12:47 -04:00
Jaspreet Sachdev
f8f9c6d469 Merge remote-tracking branch 'origin/main' into v2.9.0 2023-04-11 13:04:36 -04:00
John Crispin
690d7655a0 ucentral-event: fix dynamic vlan for devices where the WAN port is not eth0
Fixes: WIFI-12372
Signed-off-by: John Crispin <john@phrozen.org>
2023-04-10 14:25:22 +02:00
jaspreetsachdev
85ff703e2f Merge pull request #540 from Telecominfraproject/staging-fix-nns-feed
ipq807x: fix qca-nss-clients feed
2023-04-01 08:07:52 -04:00
jaspreetsachdev
52c39cd3bf Merge pull request #539 from Telecominfraproject/staging-fix-nns-feed
ipq807x: fix qca-nss-clients feed
2023-04-01 08:05:35 -04:00
Arif Alam
ebd7c79e65 ipq807x: fix qca-nss-clients feed
Signed-off-by: Arif Alam <arif.alam@netexperience.com>
2023-03-31 18:36:56 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ PKG_NAME:=qca-nss-clients
PKG_SOURCE_PROTO:=git
PKG_BRANCH:=master
PKG_RELEASE:=2
PKG_SOURCE_URL:=https://source.codeaurora.org/quic/qsdk/oss/lklm/nss-clients/
PKG_SOURCE_URL:=https://git.codelinaro.org/clo/qsdk/oss/lklm/nss-clients
PKG_MIRROR_HASH:=802bf8b2dac8da0549e108b873afd982d127370c07d6574ece71f902eafe7698
PKG_VERSION:=153998d70fdba508a59a28c13a606032cbf32686

View File

@@ -36,7 +36,7 @@ let pending_events = [];
function config_load() {
uci.load('event');
config = uci.get_all('event');
wan_ports = config.config?.wan_ports || [ 'eth0' ];
wan_ports = config.config?.wan_port || [ 'eth0' ];
if (config.wifi?.filter == '*')
config.wifi.filter = [ 'probe', 'auth', 'assoc', 'disassoc', 'deauth', 'local-deauth', 'inactive-deauth', 'key-mismatch', 'beacon-report', 'radar-detected' ];