diff options
| author | Rany Hany | 2026-02-15 16:29:17 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2026-02-16 00:52:06 +0000 |
| commit | e5d1332f739746e61c505bd36e041d2c83124e96 (patch) | |
| tree | 538ce64ddf34f3f1fe01312d2ec88a6f7e28aeae | |
| parent | f27d38666c67a9d1cc83c1a96c512a883f0b821f (diff) | |
| download | openwrt-e5d1332f739746e61c505bd36e041d2c83124e96.tar.gz | |
wifi-scripts: ucode: fix ieee80211w default
This should not be defaulted to anything in the schema.
What seemed like a minor cleanup actually broke this
as the schema defines a default value already. I did
not notice as I had this explictly set in my config.
Fixes: 70ba7512 ("wifi-scripts: ucode: allow sae_pwe to be modified for AP mode")
Signed-off-by: Rany Hany <rany_hany@riseup.net>
Link: https://github.com/openwrt/openwrt/pull/22043
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit f012e8d50a31546eb96267ab751f316d2cf46fc9)
| -rw-r--r-- | package/network/config/wifi-scripts/files-ucode/usr/share/schema/wireless.wifi-iface.json | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/network/config/wifi-scripts/files-ucode/usr/share/schema/wireless.wifi-iface.json b/package/network/config/wifi-scripts/files-ucode/usr/share/schema/wireless.wifi-iface.json index 376faef86c..75ec3a3bdb 100644 --- a/package/network/config/wifi-scripts/files-ucode/usr/share/schema/wireless.wifi-iface.json +++ b/package/network/config/wifi-scripts/files-ucode/usr/share/schema/wireless.wifi-iface.json @@ -433,8 +433,7 @@ "ieee80211w": { "description": "Enables MFP (802.11w) support (0 = disabled, 1 = optional, 2 = required). Requires the 'full' version of wpad/hostapd and support from the Wi-Fi driver", "type": "number", - "enum": [ 0, 1, 2 ], - "default": 0 + "enum": [ 0, 1, 2 ] }, "ieee80211w_max_timeout": { "type": "alias", |