wifi-scripts: ucode: add support for WPS client
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run

Fixes unwanted fallback to unencrypted network.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2025-10-15 09:39:39 +02:00
parent 2a44808374
commit 0fe9484fed

View file

@ -122,6 +122,10 @@ function setup_sta(data, config) {
iface.wpa_key_mgmt(config);
break;
case 'wps':
config.key_mgmt = 'WPS';
break;
case 'psk':
case 'psk2':
case 'sae':