Skip to content
Snippets Groups Projects
Commit 8137470e authored by David Bauer's avatar David Bauer
Browse files

modules: update openwrt

1e079d790a ath79: add extended AR9344 reset sequence
0aaf4fe5a4 Revert "ath79: reset ETH switch for AR9344"
f31ab2abef ipq4019: patch initialization of Lantiq DSL on FritzBox 7530.
3207fe6636 ramips: mt7621: add support for Confiabits MT7621 v1
a1c781675a qualcommax: dl-wrx36: fix 2.5G port LED-s
4daf540df3 generic: backport pending Realtek PHY patches
1019df4af9 generic: add pending patches for RealTek Ethernet PHYs
7cace002ba generic: backport Realtek PHY patches from upstream
3078b4e51b generic: r8169: remove reverted temperature sensor patch
0f45601ccd airoha: an7581: add pending PCI patch
fedf53650a airoha: an7581: backport ETS patch for Airoha ethernet
6d3fdebe3c uci: update to Git HEAD (2025-01-17)
c7716f363e uci: update to Git HEAD (2024-11-26)
e6cae783a4 mediatek: remove obsolete base-files scripts
27520027e1 netifd: improve packet steering on ipq40xx (and possibly others)
99a855121c mvebu: WD Cloud Mirror Gen2: Remove stty dependency
6acf90758d mvebu: Add support for WD Cloud Mirror Gen2
7555fb02ec armsr: change image names to 'combined-efi'
e7cd87e72d netifd: fix napi process name matching in packet steering script
93cdb10411 wifi-scripts: allow per-IF mesh basic rate selection
3d99cdd377 wifi-scripts: remove leftover legacy (non-netifd) wifi script support
ea80aa938f wifi-scripts: add macaddr_base wifi-device option
e20047e5d4 hostapd: fix processing mbssid config option
06340650c5 wifi-scripts: add option to set per-device ifname prefix
f719c85527 mt76: update to Git HEAD (2025-01-14)
68bf4844a1 realtek: debounce reset key for Zyxel GS1900
767339066e hostapd: backport upstream patch to fix setting BSS color
7d597f8709 ath79: teltonika-rut230: fix failsafe boot without SIM tray
6e06e1c0b1 ath79: teltonika-rut230: fix typo in "green:signal-strength4" LED
93bcec7b6c apm821xx: fixes WNDAP620 + WNDAP660 sysupgrade failures
3b4a84d05f lantiq: xrx200_legacy: disable unused phy drivers
773bb31bab lantiq: xway_legacy: refresh config
afbe72d293 lantiq: xrx200: add alternative names for Plusnet Hub One and BT Business Hub 5A
6c0707a59d lantiq: xrx200_legacy: add alternative names for TP-Link TD-W9980(B)
ff529e8137 kernel: bump 6.6 to 6.6.71
220860ef4c kernel: bump 6.6 to 6.6.70
e9d80cdb6c rockchip: disable kernel preemption
e620694876 airoha: an7581: refresh DTS with changes for cpufreq, MTD and MMC
90c29d2c04 airoha: an7581: replace cpufreq patch with new version
9a18304344 airoha: an7581: add pending patch for ETS qdisc on ethernet driver
99689859f0 airoha: an7581: add pending patch to fix PCI
6b4fcc55a9 airoha: an7581: add patch fixing support for MMC
74b8a296cb kernel: modules: Add ETS Qdisc scheduler to sched KernelPackage
5c679f56eb airoha: an7581: backport patch to support ETS and HTB sched
ce926ee32f airoha: an7581: backport 2 fix for airoha ethernet driver
b315f4ebfe airoha: an7581: replace BUS clock patch with upstream version
3ee8355f2f airoha: an7581: enable MMC and PCI and refresh config
44d6d06268 lantiq: Remove legacy LED migration script
165b9e4393 lantiq: fritz7430: fix PCI ID
baa6561939 lantiq: use nvmem for tplink tdw89x0
92ccaacb29 lantiq: use nvmem for fritz 736x
7111d84787 lantiq: use nvmem for fritz73x0
98bcdd191d lantiq: use regulator for USB GPIO
parent ab1c3118
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ GLUON_FEEDS='gluon packages routing'
OPENWRT_REPO=https://github.com/openwrt/openwrt.git
OPENWRT_BRANCH=openwrt-24.10
OPENWRT_COMMIT=38d79aca0eb22218b5dcc2ada98cde4bb734bc9c
OPENWRT_COMMIT=1e079d790ab3eb2d82990c4d547d6ce2635a25f7
PACKAGES_GLUON_REPO=https://github.com/freifunk-gluon/packages.git
PACKAGES_GLUON_COMMIT=3d08b0fee8dc5d96d8bcdb985fad1d5564de4022
......
From: David Bauer <mail@david-bauer.net>
Date: Tue, 7 Jan 2025 11:43:36 +0100
Subject: wifi-scripts: allow per-IF mesh basic rate selection
Bringing up a mesh interface using wpa_supplicant already supports a
per-VIF basic rate selection. Add the same ability when creating a mesh
VIF without wpa_supplicant.
Signed-off-by: David Bauer <mail@david-bauer.net>
diff --git a/package/network/config/wifi-scripts/files/lib/netifd/wireless/mac80211.sh b/package/network/config/wifi-scripts/files/lib/netifd/wireless/mac80211.sh
index 368885246a73b14153ffe3c7d83627f873111742..5b5a7fabda896c978b685b89163a36bae33fcdb6 100755
--- a/package/network/config/wifi-scripts/files/lib/netifd/wireless/mac80211.sh
+++ b/package/network/config/wifi-scripts/files/lib/netifd/wireless/mac80211.sh
@@ -841,13 +841,19 @@ mac80211_setup_adhoc() {
mac80211_setup_mesh() {
json_get_vars ssid mesh_id mcast_rate
+ json_get_values iface_basic_rate_list basic_rate
mcval=
[ -n "$mcast_rate" ] && wpa_supplicant_add_rate mcval "$mcast_rate"
[ -n "$mesh_id" ] && ssid="$mesh_id"
+ brlist="$basic_rate_list"
+ if [ -n "$iface_basic_rate_list" ]; then
+ brlist="$iface_basic_rate_list"
+ fi
+
brstr=
- for br in $basic_rate_list; do
+ for br in $brlist; do
wpa_supplicant_add_rate brstr "$br"
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment